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

Commit 1a71239

Browse files
committed
invalid character debug
1 parent c47cf97 commit 1a71239

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

code-server/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ resource "coder_script" "code-server" {
6666
agent_id = var.agent_id
6767
display_name = "code-server"
6868
icon = "/icon/code.svg"
69+
shell = "bash"
6970
script = templatefile("${path.module}/run.sh", {
7071
VERSION : var.install_version,
7172
EXTENSIONS : join(",", var.extensions),

code-server/run.sh

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ RESET='\033[0m'
88

99
printf "$${BOLD}Installing code-server!\n"
1010

11-
# printf "$${BOLD}extensions: $${EXTENSIONS}\n"
12-
13-
for ext in "${exts[@]}"; do
14-
printf "$${BOLD}extension: $${ext}\n"
15-
done
11+
# for ext in "${exts[@]}"; do
12+
# printf "$${BOLD}extension: $${ext}\n"
13+
# done
1614

1715
ARGS=(
1816
"--method=standalone"

0 commit comments

Comments
 (0)