From ce7f9100431911508905116492356aba7c69e7e6 Mon Sep 17 00:00:00 2001 From: Michael Brewer Date: Tue, 26 Mar 2024 14:29:38 +0200 Subject: [PATCH] fix: command not found error --- code-server/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code-server/run.sh b/code-server/run.sh index e051bc7..b04e131 100755 --- a/code-server/run.sh +++ b/code-server/run.sh @@ -9,7 +9,7 @@ CODE_SERVER="${INSTALL_PREFIX}/bin/code-server" # Set extension directory EXTENSION_ARG="" if [ -n "${EXTENSIONS_DIR}" ]; then - EXTENSION_ARG="--extensions-dir ${EXTENSIONS_DIR} " + EXTENSION_ARG="--extensions-dir=${EXTENSIONS_DIR}" fi function run_code_server() {