Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(726)

Unified Diff: chrome_frame/cfinstall/build.sh

Issue 10532016: Use HTTPS to download code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/cfinstall/build.sh
===================================================================
--- chrome_frame/cfinstall/build.sh (revision 147911)
+++ chrome_frame/cfinstall/build.sh (working copy)
@@ -29,13 +29,15 @@
CLOSURE_COMPILER_JAR_ZIP_RELATIVE=compiler.jar
CLOSURE_COMPILER_JAR=$DEPS_DIR/$CLOSURE_COMPILER_JAR_ZIP_RELATIVE
+# TODO(palmer): Convert the svn checkout to HTTPS with the broken SVN
+# clients are finally gone. As of 24 July 2012, that should be pretty soon.
mkdir -p $DEPS_DIR &&
mkdir -p $OUT_DIR &&
{ [[ -e $CLOSURE_LIBRARY_DIR ]] || \
svn checkout http://closure-library.googlecode.com/svn/trunk/ \
$CLOSURE_LIBRARY_DIR; } && \
{ [[ -e $CLOSURE_COMPILER_JAR ]] ||
- { wget http://closure-compiler.googlecode.com/files/compiler-latest.zip \
+ { wget https://closure-compiler.googlecode.com/files/compiler-latest.zip \
-O $CLOSURE_COMPILER_ZIP && \
unzip -d $DEPS_DIR $CLOSURE_COMPILER_ZIP \
$CLOSURE_COMPILER_JAR_ZIP_RELATIVE >/dev/null; }; } &&
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698