jhbuild r2593 - in trunk: . jhbuild/versioncontrol



Author: fpeters
Date: Sat Dec 20 22:46:36 2008
New Revision: 2593
URL: http://svn.gnome.org/viewvc/jhbuild?rev=2593&view=rev

Log:
* jhbuild/versioncontrol/tarball.py: added --continue-at flag to curl,
to match what has been done with wget.  (following-up: #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	Sat Dec 20 22:46:36 2008
@@ -176,7 +176,7 @@
                         ['wget', '--continue', self.module, '-O', localfile])
             elif has_command('curl'):
                 res = buildscript.execute(
-                        ['curl', '-L', self.module, '-o', localfile])
+                        ['curl', '--continue-at', '-', '-L', self.module, '-o', localfile])
             else:
                 raise FatalError(_("unable to find wget or curl"))
 



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