]> git.ipfire.org Git - pbs.git/commitdiff
sync: Never sync any temporary files
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 16 Apr 2025 09:35:46 +0000 (09:35 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 16 Apr 2025 09:35:46 +0000 (09:35 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/buildservice/__init__.py

index f6a923dc929e2b855b1cc576712fd64d2715cd54..fc266de747c3f14645de72946aa56179549a2b09 100644 (file)
@@ -663,7 +663,7 @@ class Backend(object):
                        commandline.append("--include=%s***" % self.relpath(path))
 
                # Exclude everything that hasn't been included
-               commandline += ("--include=*/", "--exclude=*")
+               commandline += ("--exclude=tmp", "--include=*/", "--exclude=*")
 
                # Run command
                await self.command(*commandline, krb5_auth=True)