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