2020-05-22 04:57:35 +03:00
|
|
|
#!/bin/sh
|
2020-06-03 17:32:11 +03:00
|
|
|
set -eu
|
2020-04-30 14:52:54 +03:00
|
|
|
|
2020-05-27 23:39:17 +03:00
|
|
|
# This script is intended to be bundled into the standalone releases.
|
|
|
|
# Runs code-server with the bundled node binary.
|
2020-02-26 01:20:47 +03:00
|
|
|
|
2020-06-03 17:32:11 +03:00
|
|
|
_realpath() {
|
2022-02-01 19:45:19 +03:00
|
|
|
# See https://github.com/coder/code-server/issues/1537 on why no realpath or readlink -f.
|
2020-06-03 22:18:27 +03:00
|
|
|
|
|
|
|
script="$1"
|
|
|
|
cd "$(dirname "$script")"
|
|
|
|
|
|
|
|
while [ -L "$(basename "$script")" ]; do
|
|
|
|
script="$(readlink "$(basename "$script")")"
|
|
|
|
cd "$(dirname "$script")"
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "$PWD/$(basename "$script")"
|
|
|
|
}
|
2020-06-03 17:32:11 +03:00
|
|
|
|
2020-06-03 22:18:27 +03:00
|
|
|
root() {
|
|
|
|
script="$(_realpath "$0")"
|
|
|
|
bin_dir="$(dirname "$script")"
|
2020-06-04 01:23:42 +03:00
|
|
|
dirname "$bin_dir"
|
2020-04-23 00:45:53 +03:00
|
|
|
}
|
2020-02-26 01:20:47 +03:00
|
|
|
|
2020-06-03 22:18:27 +03:00
|
|
|
ROOT="$(root)"
|
2020-05-28 07:49:37 +03:00
|
|
|
exec "$ROOT/lib/node" "$ROOT" "$@"
|