vscode/scripts/code-server.sh

27 lines
478 B
Bash
Raw Normal View History

2021-10-21 00:42:13 +08:00
#!/usr/bin/env bash
if [[ "$OSTYPE" == "darwin"* ]]; then
realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; }
ROOT=$(dirname $(dirname $(realpath "$0")))
2021-10-21 00:42:13 +08:00
else
ROOT=$(dirname $(dirname $(readlink -f $0)))
2021-10-21 00:42:13 +08:00
fi
function code() {
cd $ROOT
# Sync built-in extensions
yarn download-builtin-extensions
# Load remote node
yarn gulp node
NODE=$(node build/lib/node.js)
NODE_ENV=development \
VSCODE_DEV=1 \
$NODE ./scripts/code-server.js "$@"
2021-10-21 00:42:13 +08:00
}
code "$@"