Files
vscode/resources/server/bin/server-old.sh
Martin Aeschlimann f4ba7dd12b server bin cleanup
2022-01-11 16:34:28 +01:00

13 lines
243 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/vs/server/main.js" --compatibility=1.63 "$@"