code-server-2/ci/code-server.sh

19 lines
582 B
Bash
Raw Normal View History

2020-02-25 22:20:47 +00:00
#!/usr/bin/env sh
2020-04-22 21:45:53 +00:00
# Runs code-server with the bundled Node binary.
2020-02-25 22:20:47 +00:00
2020-04-22 21:45:53 +00:00
# More complicated than readlink -f or realpath to support macOS.
# See https://github.com/cdr/code-server/issues/1537
get_installation_dir() {
# We read the symlink, which may be relative from $0.
dst="$(readlink "$0")"
# We cd into the $0 directory.
cd "$(dirname "$0")"
# Now we can cd into the dst directory.
cd "$(dirname "$dst")"
# Finally we use pwd -P to print the absolute path of the directory of $dst.
pwd -P
}
2020-02-25 22:20:47 +00:00
2020-04-22 21:45:53 +00:00
dir=$(get_installation_dir)
exec "$dir/node" "$dir/out/node/entry.js" "$@"