From: Michael Tremer Date: Wed, 16 Apr 2025 09:35:46 +0000 (+0000) Subject: sync: Never sync any temporary files X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2a1e318ecc963f537458942c6d04221a6e40c620;p=pbs.git sync: Never sync any temporary files Signed-off-by: Michael Tremer --- diff --git a/src/buildservice/__init__.py b/src/buildservice/__init__.py index f6a923dc..fc266de7 100644 --- a/src/buildservice/__init__.py +++ b/src/buildservice/__init__.py @@ -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)