diff options
author | palmer@chromium.org <palmer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-24 19:20:02 +0000 |
---|---|---|
committer | palmer@chromium.org <palmer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-24 19:20:02 +0000 |
commit | 92f502dd84ac397c556afd3297c44bf49e796d38 (patch) | |
tree | 4fe474cacd6188b3a9cbca2d9b94c9550fa7c075 /chrome_frame/cfinstall | |
parent | 8785d9ee2f24389fc588c6e5ed73425190120257 (diff) | |
download | chromium_src-92f502dd84ac397c556afd3297c44bf49e796d38.zip chromium_src-92f502dd84ac397c556afd3297c44bf49e796d38.tar.gz chromium_src-92f502dd84ac397c556afd3297c44bf49e796d38.tar.bz2 |
Use HTTPS to download code.
BUG=106096
Review URL: https://chromiumcodereview.appspot.com/10532016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148163 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/cfinstall')
-rwxr-xr-x | chrome_frame/cfinstall/build.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome_frame/cfinstall/build.sh b/chrome_frame/cfinstall/build.sh index 354262c..517b8e5 100755 --- a/chrome_frame/cfinstall/build.sh +++ b/chrome_frame/cfinstall/build.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2011 The Chromium Authors. All rights reserved. +# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -29,13 +29,15 @@ CLOSURE_COMPILER_ZIP=$DEPS_DIR/compiler-latest.zip 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; }; } && |