diff options
author | Cody Northrop <cnorthrop@google.com> | 2016-05-25 08:23:45 -0600 |
---|---|---|
committer | Cody Northrop <cnorthrop@google.com> | 2016-05-31 11:34:01 -0600 |
commit | dc0ac6bcc830e4a062ca5fcb04f8e98af293cc3a (patch) | |
tree | 0d6c111affbb02f8f6b0bc558b8eddf79da84893 /build-android | |
parent | fac01301ea8357d1093ecf310009a46c7dd10b2e (diff) |
toolchain: Simplify setup for shaderc, use https instead of git@
Diffstat (limited to 'build-android')
-rwxr-xr-x | build-android/update_external_sources_android.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-android/update_external_sources_android.sh b/build-android/update_external_sources_android.sh index e728d893..4ceaeeb9 100755 --- a/build-android/update_external_sources_android.sh +++ b/build-android/update_external_sources_android.sh @@ -66,7 +66,7 @@ function create_shaderc () { rm -rf $BASEDIR/shaderc echo "Creating local shaderc repository ($BASEDIR/shaderc)." cd $BASEDIR - git clone git@github.com:google/shaderc.git + git clone https://github.com/google/shaderc.git cd shaderc git checkout $SHADERC_REVISION } |