mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-20 02:08:47 +00:00
13 lines
230 B
Bash
13 lines
230 B
Bash
#!/usr/bin/env sh
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#
|
|
|
|
case "$1" in
|
|
--inspect*) INSPECT="$1"; shift;;
|
|
esac
|
|
|
|
ROOT=$(dirname "$(dirname "$0")")
|
|
|
|
"$ROOT/node" ${INSPECT:-} "$ROOT/out/server-main.js" "$@"
|