2020-05-22 03:57:35 +02:00
|
|
|
#!/bin/sh
|
2020-06-03 16:32:11 +02:00
|
|
|
set -eu
|
2020-04-30 13:52:54 +02:00
|
|
|
|
2020-05-27 22:39:17 +02:00
|
|
|
# This script is intended to be bundled into the standalone releases.
|
|
|
|
# Runs code-server with the bundled node binary.
|
2020-02-25 23:20:47 +01:00
|
|
|
|
2020-06-03 16:32:11 +02:00
|
|
|
_realpath() {
|
2020-06-03 21:18:27 +02:00
|
|
|
# See https://github.com/cdr/code-server/issues/1537 on why no realpath or readlink -f.
|
|
|
|
|
|
|
|
script="$1"
|
|
|
|
cd "$(dirname "$script")"
|
|
|
|
|
|
|
|
while [ -L "$(basename "$script")" ]; do
|
|
|
|
if [ -L "./node" ] && [ -L "./code-server" ] &&
|
|
|
|
[ -f "package.json" ] &&
|
|
|
|
cat package.json | grep -q '^ "name": "code-server",$'; then
|
|
|
|
echo "***** Please use the script in bin/code-server instead!" >&2
|
|
|
|
echo "***** This script will soon be removed!" >&2
|
|
|
|
echo "***** See the release notes at https://github.com/cdr/code-server/releases/tag/v3.4.0" >&2
|
2020-06-03 16:32:11 +02:00
|
|
|
fi
|
|
|
|
|
2020-06-03 21:18:27 +02:00
|
|
|
script="$(readlink "$(basename "$script")")"
|
|
|
|
cd "$(dirname "$script")"
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "$PWD/$(basename "$script")"
|
|
|
|
}
|
2020-06-03 16:32:11 +02:00
|
|
|
|
2020-06-03 21:18:27 +02:00
|
|
|
root() {
|
|
|
|
script="$(_realpath "$0")"
|
|
|
|
bin_dir="$(dirname "$script")"
|
2020-06-04 00:23:42 +02:00
|
|
|
dirname "$bin_dir"
|
2020-04-22 23:45:53 +02:00
|
|
|
}
|
2020-02-25 23:20:47 +01:00
|
|
|
|
2020-06-03 21:18:27 +02:00
|
|
|
ROOT="$(root)"
|
2020-05-28 06:49:37 +02:00
|
|
|
exec "$ROOT/lib/node" "$ROOT" "$@"
|