kylin-code/scripts/code-web.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
497 B
Bash
Raw Normal View History

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