10 lines
176 B
Bash
10 lines
176 B
Bash
|
#!/usr/bin/env bash
|
||
|
# code-server.sh -- Run code-server with the bundled Node binary.
|
||
|
|
||
|
main() {
|
||
|
cd "$(dirname "$0")" || exit 1
|
||
|
./node ./out/node/entry.js "$@"
|
||
|
}
|
||
|
|
||
|
main "$@"
|