[llvm-commits] [zorg] r171527 - /zorg/trunk/zorg/buildbot/PhasedBuilderUtils.py
David Dean
david_dean at apple.com
Fri Jan 4 13:10:15 PST 2013
Author: ddean
Date: Fri Jan 4 15:10:15 2013
New Revision: 171527
URL: http://llvm.org/viewvc/llvm-project?rev=171527&view=rev
Log:
Follow redirects when curling the host compiler
Modified:
zorg/trunk/zorg/buildbot/PhasedBuilderUtils.py
Modified: zorg/trunk/zorg/buildbot/PhasedBuilderUtils.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/PhasedBuilderUtils.py?rev=171527&r1=171526&r2=171527&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/PhasedBuilderUtils.py (original)
+++ zorg/trunk/zorg/buildbot/PhasedBuilderUtils.py Fri Jan 4 15:10:15 2013
@@ -124,7 +124,7 @@
latest_url += '/latest_validated/apple-clang-x86_64-darwin10-R.tar.gz'
f.addStep(buildbot.steps.shell.ShellCommand(
name='download.artifacts',
- command=['curl', '-svo', 'host-compiler.tar.gz', latest_url],
+ command=['curl', '-svLo', 'host-compiler.tar.gz', latest_url],
haltOnFailure=True, description=['download build artifacts'],
workdir=WithProperties('%(builddir)s')))
f.addStep(buildbot.steps.shell.ShellCommand(
More information about the llvm-commits
mailing list