Commit 5dae820c authored by Eric Seidel's avatar Eric Seidel Committed by Adam Barth

Use https instead of http when downloading Dart. (#4821)

This came up in security review.

@abarth
parent ec752d81
...@@ -34,7 +34,7 @@ if [ ! -f "$DART_SDK_STAMP_PATH" ] || [ "$DART_SDK_VERSION" != `cat "$DART_SDK_S ...@@ -34,7 +34,7 @@ if [ ! -f "$DART_SDK_STAMP_PATH" ] || [ "$DART_SDK_VERSION" != `cat "$DART_SDK_S
DART_CHANNEL="dev" DART_CHANNEL="dev"
fi fi
DART_SDK_URL="http://storage.googleapis.com/dart-archive/channels/$DART_CHANNEL/raw/$DART_SDK_VERSION/sdk/$DART_ZIP_NAME" DART_SDK_URL="https://storage.googleapis.com/dart-archive/channels/$DART_CHANNEL/raw/$DART_SDK_VERSION/sdk/$DART_ZIP_NAME"
rm -rf -- "$DART_SDK_PATH" rm -rf -- "$DART_SDK_PATH"
mkdir -p -- "$DART_SDK_PATH" mkdir -p -- "$DART_SDK_PATH"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment