1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-22 21:16:16 +01:00

correctly specify --delete option when using rsync

This commit is contained in:
Vitezslav Cizek 2014-01-08 15:18:02 +01:00
parent 5d5185cbc6
commit f85c76bd42

View File

@ -5634,7 +5634,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
hostargs.append(long_name)
hostargs.append(hostprefer)
rsync_prefer_cmd = ['rsync', '-az', '-delete', '-e', 'ssh',
rsync_prefer_cmd = ['rsync', '-az', '--delete', '-e', 'ssh',
pdir,
"%s:%s" % (hostname, os.path.dirname(hostprefer))]
print('Run: %s' % " ".join(rsync_prefer_cmd))
@ -5686,7 +5686,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
### run all commands ###
# 1.) rsync sources
rsync_source_cmd = ['rsync', '-az', '-delete', '-e', 'ssh', cwd, "%s:%s" % (hostname, hostpath)]
rsync_source_cmd = ['rsync', '-az', '--delete', '-e', 'ssh', cwd, "%s:%s" % (hostname, hostpath)]
print('Run: %s' % " ".join(rsync_source_cmd))
ret = run_external(rsync_source_cmd[0], *rsync_source_cmd[1:])
if ret != 0: