We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf97b34 commit caa3f5aCopy full SHA for caa3f5a
src/code-server/install.sh
@@ -10,7 +10,6 @@ fi
10
curl -fsSL https://code-server.dev/install.sh | sh -s -- $CODE_SERVER_INSTALL_ARGS
11
12
IFS=',' read -ra extensions <<<"$EXTENSIONS"
13
-declare -p extensions
14
15
for extension in "${extensions[@]}"
16
do
@@ -92,14 +91,12 @@ if [[ "$VERBOSE" == "true" ]]; then
92
91
fi
93
94
IFS=',' read -ra trusted_origins <<<"$TRUSTEDORIGINS"
95
-declare -p trusted_origins
96
97
for trusted_origin in "${trusted_origins[@]}"; do
98
FLAGS+=(--trusted-origins "$trusted_origin")
99
done
100
101
IFS=',' read -ra proposed_api_extensions <<<"$ENABLEPROPOSEDAPI"
102
-declare -p proposed_api_extensions
103
104
for extension in "${proposed_api_extensions[@]}"; do
105
FLAGS+=(--enable-proposed-api "$extension")
0 commit comments