mirror of
https://github.com/voideditor/void
synced 2026-05-23 09:28:23 +00:00
13 lines
249 B
Bash
13 lines
249 B
Bash
|
|
#!/usr/bin/env sh
|
||
|
|
#
|
||
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
#
|
||
|
|
|
||
|
|
case "$1" in
|
||
|
|
--inspect*) INSPECT="$1"; shift;;
|
||
|
|
esac
|
||
|
|
|
||
|
|
ROOT="$(dirname "$(dirname "$(readlink -f "$0")")")"
|
||
|
|
|
||
|
|
"$ROOT/node" ${INSPECT:-} "$ROOT/out/server-main.js" "$@"
|