Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit c47cf97

Browse files
committed
naming fix
1 parent 54fc306 commit c47cf97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code-server/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
EXTENSIONS=("${EXTENSIONS}")
4-
IFS=',' read -ra arr <<< "$${EXTENSIONS}"
4+
# IFS=',' read -ra exts <<< "$${EXTENSIONS}"
55
BOLD='\033[0;1m'
66
CODE='\033[36;40;1m'
77
RESET='\033[0m'
@@ -10,7 +10,7 @@ printf "$${BOLD}Installing code-server!\n"
1010

1111
# printf "$${BOLD}extensions: $${EXTENSIONS}\n"
1212

13-
for ext in "${arr[@]}"; do
13+
for ext in "${exts[@]}"; do
1414
printf "$${BOLD}extension: $${ext}\n"
1515
done
1616

0 commit comments

Comments
 (0)