Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsync15
1 files changed, 15 insertions, 0 deletions
diff --git a/sync b/sync
new file mode 100755
index 0000000..a0315ca
--- /dev/null
+++ b/sync
@@ -0,0 +1,15 @@
+#!/usr/bin/python
+
+import os
+import subprocess
+
+base_dir = os.path.dirname(__file__)
+images_dir = os.path.join(base_dir, 'images')
+dest_dir = 'marco@sugarlabs.org:/var/www-sugarlabs/download/soas/'
+
+def main():
+ subprocess.check_call(['rsync', '-rv', '--progress', '--delete',
+ images_dir, dest_dir])
+
+if __name__ == "__main__":
+ main()