code-server/ci/build/code-server.sh

41 lines
971 B
Bash
Raw Normal View History

#!/bin/sh
set -eu
2020-05-27 20:39:17 +00:00
# This script is intended to be bundled into the standalone releases.
# Runs code-server with the bundled node binary.
2020-02-25 22:20:47 +00:00
_realpath() {
if [ "$(uname)" = "Linux" ]; then
readlink -f "$1"
return
fi
# See https://github.com/cdr/code-server/issues/1537
if [ "$(uname)" = "Darwin" ]; then
# We read the symlink, which may be relative from $1.
script="$1"
if [ -L "$script" ]; then
while [ -L "$script" ]; do
script="$(readlink "$script")"
cd "$(dirname "$script")"
done
else
cd "$(dirname "$script")"
fi
echo "$PWD/$(basename "$script")"
return
fi
echo "Unsupported OS $(uname)" >&2
exit 1
2020-04-22 21:45:53 +00:00
}
2020-02-25 22:20:47 +00:00
ROOT="$(dirname "$(dirname "$(_realpath "$0")")")"
2020-05-22 02:16:16 +00:00
if [ "$(uname)" = "Linux" ]; then
export LD_LIBRARY_PATH="$ROOT/lib:${LD_LIBRARY_PATH-}"
2020-05-22 19:38:03 +00:00
elif [ "$(uname)" = "Darwin" ]; then
export DYLD_LIBRARY_PATH="$ROOT/lib:${DYLD_LIBRARY_PATH-}"
fi
2020-05-28 04:49:37 +00:00
exec "$ROOT/lib/node" "$ROOT" "$@"