mirror of
https://github.com/coder/code-server.git
synced 2025-07-28 20:43:24 +08:00
10 lines
176 B
Bash
Executable File
10 lines
176 B
Bash
Executable File
#!/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 "$@"
|