jhbuild r2590 - in trunk: . jhbuild/versioncontrol



Author: fpeters
Date: Thu Dec 18 21:33:26 2008
New Revision: 2590
URL: http://svn.gnome.org/viewvc/jhbuild?rev=2590&view=rev

Log:
* jhbuild/versioncontrol/tarball.py: added --continue flag to wget, to
work a little bit better on unreliable connections.  (closes: #562918)



Modified:
   trunk/ChangeLog
   trunk/jhbuild/versioncontrol/tarball.py

Modified: trunk/jhbuild/versioncontrol/tarball.py
==============================================================================
--- trunk/jhbuild/versioncontrol/tarball.py	(original)
+++ trunk/jhbuild/versioncontrol/tarball.py	Thu Dec 18 21:33:26 2008
@@ -173,7 +173,7 @@
             # don't have the tarball, try downloading it and check again
             if has_command('wget'):
                 res = buildscript.execute(
-                        ['wget', self.module, '-O', localfile])
+                        ['wget', '--continue', self.module, '-O', localfile])
             elif has_command('curl'):
                 res = buildscript.execute(
                         ['curl', '-L', self.module, '-o', localfile])



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]