summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2019-02-03 20:22:34 +0100
committerAndreas Grapentin <andreas@grapentin.org>2019-02-03 20:22:34 +0100
commitdbc215617c106c8fd6133a6ab4e31c486e79c876 (patch)
tree22365aa57c5df737cb664657b65e335e18a3c37e
parent491350c2fea7e7d9fe5e32b5f60dec2c3eb8b9bd (diff)
fixing rsync call
-rw-r--r--parabola_repolint/repocache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/parabola_repolint/repocache.py b/parabola_repolint/repocache.py
index 67dbc52..372546a 100644
--- a/parabola_repolint/repocache.py
+++ b/parabola_repolint/repocache.py
@@ -360,4 +360,4 @@ class RepoCache():
remote = mirror % dict(repo=repo, arch=arch)
local = os.path.join(self._packages_dir, repo)
os.makedirs(local, exist_ok=True)
- sh.rsync('-a', '-L', '--delete-after', '--filter="P *.pkginfo"', remote, local)
+ sh.rsync('-a', '-L', '--delete-after', '--filter', 'P *.pkginfo', remote, local)