Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@marcopg.org>2008-11-29 15:54:56 (GMT)
committer Marco Pesenti Gritti <marco@marcopg.org>2008-11-29 15:54:56 (GMT)
commit2c96cd0932a6ed3dd02d4a10f88ef326c81c0225 (patch)
treee6f3b07c44c879400566fc698a84421362f3dc27
parentbe2daca2e03418ddf1fe2fb0adf02e94beaad9b5 (diff)
Missing slash
-rwxr-xr-xsync2
1 files changed, 1 insertions, 1 deletions
diff --git a/sync b/sync
index a0315ca..d63332d 100755
--- a/sync
+++ b/sync
@@ -9,7 +9,7 @@ dest_dir = 'marco@sugarlabs.org:/var/www-sugarlabs/download/soas/'
def main():
subprocess.check_call(['rsync', '-rv', '--progress', '--delete',
- images_dir, dest_dir])
+ images_dir + '/', dest_dir])
if __name__ == "__main__":
main()