1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Revert "Clone without blobs to save space" !1382

This seems to make git ignore the _fsck skipList_ files.

This reverts commit 24ea1f6852.

closes #1177
fdroid-bootstrap-buildserver!34
!1408
This commit is contained in:
Hans-Christoph Steiner 2023-11-20 10:01:21 +01:00
parent 79adc6f57a
commit 3e9f27612e

View File

@ -1260,7 +1260,7 @@ class vcs_git(vcs):
def gotorevisionx(self, rev):
if not os.path.exists(self.local):
# Brand new checkout
p = self.git(['clone', '--filter=blob:none', '--', self.remote, str(self.local)])
p = self.git(['clone', '--', self.remote, str(self.local)])
if p.returncode != 0:
self.clone_failed = True
raise VCSException("Git clone failed", p.output)