diff --git a/code-server/run.sh b/code-server/run.sh index aec5edd..aa309a5 100755 --- a/code-server/run.sh +++ b/code-server/run.sh @@ -1,17 +1,12 @@ #!/usr/bin/env bash EXTENSIONS=("${EXTENSIONS}") -# IFS=',' read -ra exts <<< "$${EXTENSIONS}" BOLD='\033[0;1m' CODE='\033[36;40;1m' RESET='\033[0m' printf "$${BOLD}Installing code-server!\n" -# for ext in "${exts[@]}"; do -# printf "$${BOLD}extension: $${ext}\n" -# done - ARGS=( "--method=standalone" "--prefix=${INSTALL_PREFIX}" @@ -51,4 +46,4 @@ fi echo "👷 Running code-server in the background..." echo "Check logs at ${LOG_PATH}!" -$CODE_SERVER --auth none --port ${PORT} >${LOG_PATH} 2>&1 & +$CODE_SERVER --auth none --port ${PORT} >${LOG_PATH} 2>&1 & \ No newline at end of file