Skip to content

Commit caa3f5a

Browse files
fix: remove debug print
1 parent cf97b34 commit caa3f5a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/code-server/install.sh

-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ fi
1010
curl -fsSL https://code-server.dev/install.sh | sh -s -- $CODE_SERVER_INSTALL_ARGS
1111

1212
IFS=',' read -ra extensions <<<"$EXTENSIONS"
13-
declare -p extensions
1413

1514
for extension in "${extensions[@]}"
1615
do
@@ -92,14 +91,12 @@ if [[ "$VERBOSE" == "true" ]]; then
9291
fi
9392

9493
IFS=',' read -ra trusted_origins <<<"$TRUSTEDORIGINS"
95-
declare -p trusted_origins
9694

9795
for trusted_origin in "${trusted_origins[@]}"; do
9896
FLAGS+=(--trusted-origins "$trusted_origin")
9997
done
10098

10199
IFS=',' read -ra proposed_api_extensions <<<"$ENABLEPROPOSEDAPI"
102-
declare -p proposed_api_extensions
103100

104101
for extension in "${proposed_api_extensions[@]}"; do
105102
FLAGS+=(--enable-proposed-api "$extension")

0 commit comments

Comments
 (0)