fix(code-server): handle when the extension folder does not exist yet (#278)

pull/287/head
Michael Brewer 9 months ago committed by GitHub
parent 310d0262bd
commit 4c45d69994
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -10,6 +10,7 @@ CODE_SERVER="${INSTALL_PREFIX}/bin/code-server"
EXTENSION_ARG=""
if [ -n "${EXTENSIONS_DIR}" ]; then
EXTENSION_ARG="--extensions-dir=${EXTENSIONS_DIR}"
mkdir -p "${EXTENSIONS_DIR}"
fi
function run_code_server() {

Loading…
Cancel
Save