From 7d75156507415c78ca24fe4ec974c33e8d3367dc Mon Sep 17 00:00:00 2001 From: charltonkao <14200812+charltonkao@users.noreply.github.com> Date: Sun, 20 Mar 2022 11:17:46 -0700 Subject: [PATCH] Update setup.sh fixed error due to unauthenticated git protocol on port 9418 is no longer supported. https://github.blog/2021-09-01-improving-git-protocol-security-github/ --- tools/Install/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Install/setup.sh b/tools/Install/setup.sh index 5ae9a0d2d1..03870a2ee2 100755 --- a/tools/Install/setup.sh +++ b/tools/Install/setup.sh @@ -18,7 +18,7 @@ set -o errexit # Exit the script if any statement fails. set -o nounset # Exit the script if any uninitialized variable is used. -CLONE_URL=${CLONE_URL:- 'git://github.com/alexa/avs-device-sdk.git'} +CLONE_URL=${CLONE_URL:- 'https://github.com/alexa/avs-device-sdk.git'} PORT_AUDIO_FILE="pa_stable_v190600_20161030.tgz" PORT_AUDIO_DOWNLOAD_URL="http://www.portaudio.com/archives/$PORT_AUDIO_FILE"