diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2023-10-28 01:47:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-28 01:47:44 +0300 |
commit | d4ecc7be066bfc9fe3bd0f5eef7e9a429b2b68f7 (patch) | |
tree | 1ca1a9534c274146e3c28fa2bb198d8dcd90f77a /src/go/install.sh | |
parent | 719901a1b4751d5d9864d9700f56b6ecf80cc4f4 (diff) |
Update Features - Remove use of get_common_setting (#735)feature_rust_1.1.1feature_go_1.2.2feature_docker-outside-of-docker_1.3.1feature_docker-in-docker_2.7.1feature_azure-cli_1.2.2feature_aws-cli_1.0.7
Diffstat (limited to 'src/go/install.sh')
-rwxr-xr-x | src/go/install.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/go/install.sh b/src/go/install.sh index f79fc6f..90e0973 100755 --- a/src/go/install.sh +++ b/src/go/install.sh @@ -84,21 +84,6 @@ find_version_from_git_tags() { echo "${variable_name}=${!variable_name}" } -# Get central common setting -get_common_setting() { - if [ "${common_settings_file_loaded}" != "true" ]; then - curl -sfL "https://aka.ms/vscode-dev-containers/script-library/settings.env" 2>/dev/null -o /tmp/vsdc-settings.env || echo "Could not download settings file. Skipping." - common_settings_file_loaded=true - fi - if [ -f "/tmp/vsdc-settings.env" ]; then - local multi_line="" - if [ "$2" = "true" ]; then multi_line="-z"; fi - local result="$(grep ${multi_line} -oP "$1=\"?\K[^\"]+" /tmp/vsdc-settings.env | tr -d '\0')" - if [ ! -z "${result}" ]; then declare -g $1="${result}"; fi - fi - echo "$1=${!1}" -} - apt_get_update() { if [ "$(find /var/lib/apt/lists/* | wc -l)" = "0" ]; then @@ -148,7 +133,6 @@ if [[ "${TARGET_GO_VERSION}" != "none" ]] && [[ "$(go version)" != *"${TARGET_GO export GNUPGHOME="/tmp/tmp-gnupg" mkdir -p ${GNUPGHOME} chmod 700 ${GNUPGHOME} - get_common_setting GO_GPG_KEY_URI curl -sSL -o /tmp/tmp-gnupg/golang_key "${GO_GPG_KEY_URI}" gpg -q --import /tmp/tmp-gnupg/golang_key echo "Downloading Go ${TARGET_GO_VERSION}..." |