From 7fa87d3074dc4d62e5f594b3c12ef96d534be316 Mon Sep 17 00:00:00 2001 From: Stephen Kirby Date: Fri, 13 Oct 2023 19:25:14 +0000 Subject: [PATCH] naming fix --- code-server/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code-server/run.sh b/code-server/run.sh index 83542aa..4efb962 100755 --- a/code-server/run.sh +++ b/code-server/run.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash EXTENSIONS=("${EXTENSIONS}") -IFS=',' read -ra arr <<< "$${EXTENSIONS}" +IFS=',' read -ra EXTENSIONS <<< "$${EXTENSIONS}" BOLD='\033[0;1m' CODE='\033[36;40;1m' RESET='\033[0m' @@ -10,7 +10,7 @@ printf "$${BOLD}Installing code-server!\n" # printf "$${BOLD}extensions: $${EXTENSIONS}\n" -for ext in "$${EXTENSIONS[@]}"; do +for ext in "${EXTENSIONS[@]}"; do printf "$${BOLD}extension: $${ext}\n" done