vscode/scripts/code-server.sh

32 lines
585 B
Bash
Raw Normal View History

2021-10-20 16:42:13 +00:00
#!/usr/bin/env bash
if [[ "$OSTYPE" == "darwin"* ]]; then
realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; }
ROOT=$(dirname $(dirname $(realpath "$0")))
2021-10-20 16:42:13 +00:00
else
ROOT=$(dirname $(dirname $(readlink -f $0)))
2021-10-20 16:42:13 +00:00
fi
function code() {
pushd $ROOT
2021-10-20 16:42:13 +00:00
# Get electron, compile, built-in extensions
if [[ -z "${VSCODE_SKIP_PRELAUNCH}" ]]; then
node build/lib/preLaunch.js
fi
2021-10-20 16:42:13 +00:00
NODE=$(node build/lib/node.js)
2022-01-21 14:15:12 +00:00
if [ ! -e $NODE ];then
# Load remote node
yarn gulp node
fi
2021-10-20 16:42:13 +00:00
popd
2021-10-20 16:42:13 +00:00
NODE_ENV=development \
VSCODE_DEV=1 \
$NODE $ROOT/scripts/code-server.js "$@"
2021-10-20 16:42:13 +00:00
}
code "$@"