2020-02-26 05:20:47 +07:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
# code-server.sh -- Run code-server with the bundled Node binary.
|
|
|
|
|
2020-03-05 23:26:14 +07:00
|
|
|
dir="$(dirname "$(readlink -f "$0" || realpath "$0")")"
|
2020-02-26 05:20:47 +07:00
|
|
|
|
2020-03-06 23:31:16 +07:00
|
|
|
exec "$dir/node" "$dir/out/node/entry.js" "$@"
|