changeset 19145:9abbc97e2974

gnulib-tool.py: Fix typo in rsync invocation.
author Bruno Haible <bruno@clisp.org>
date Sat, 09 Sep 2017 01:21:26 +0200
parents 15f2e608ae0d
children 1d1a138695e8
files pygnulib/GLImport.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pygnulib/GLImport.py	Sat Sep 09 01:31:54 2017 +0200
+++ b/pygnulib/GLImport.py	Sat Sep 09 01:21:26 2017 +0200
@@ -1210,7 +1210,7 @@
                 result = sp.check_output(cmd, shell=True)
                 result = bool(int(result))
                 if result:  # use rsync
-                    args = ['rsync', '-Lrtz', '%sgulib/' % TP_RSYNC_URI, '.']
+                    args = ['rsync', '-Lrtz', '%sgnulib/' % TP_RSYNC_URI, '.']
                 else:  # use wget
                     args = ['wget', '--quiet', '-r', '-l1', '-nd', '-np', '-A.po',
                             '%sgnulib' % TP_URL]