We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b04683c commit 93965edCopy full SHA for 93965ed
code-server/run.sh
@@ -5,14 +5,6 @@ BOLD='\033[0;1m'
5
CODE='\033[36;40;1m'
6
RESET='\033[0m'
7
8
-printf "ext string$${EXTENSIONS}"
9
-
10
-IFS=',' read -r -a extArr <<< "$${EXTENSIONS}"
11
12
-for i in "$${extArr[@]}"; do
13
- echo " h: $i"
14
-done
15
16
printf "$${BOLD}Installing code-server!\n"
17
18
ARGS=(
@@ -33,7 +25,8 @@ printf "🥳 code-server has been installed in ${INSTALL_PREFIX}\n\n"
33
25
CODE_SERVER="${INSTALL_PREFIX}/bin/code-server"
34
26
35
27
# Install each extension...
36
-for extension in "$${EXTENSIONS[@]}"; do
28
+IFS=',' read -r -a EXTENSIONLIST <<< "$${EXTENSIONS}"
29
+for extension in "$${EXTENSIONLIST[@]}"; do
37
30
if [ -z "$extension" ]; then
38
31
continue
39
32
fi
0 commit comments