13 lines
381 B
Bash
Executable File
13 lines
381 B
Bash
Executable File
#!/usr/bin/env sh
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#
|
|
ROOT="$(dirname "$(dirname "$(dirname "$(readlink -f "$0")")")")"
|
|
|
|
APP_NAME="code"
|
|
VERSION="1.91.0"
|
|
COMMIT="ea1445cc7016315d0f5728f8e8b12a45dc0a7286"
|
|
EXEC_NAME="code"
|
|
CLI_SCRIPT="$ROOT/out/server-cli.js"
|
|
"$ROOT/node" "$CLI_SCRIPT" "$APP_NAME" "$VERSION" "$COMMIT" "$EXEC_NAME" "--openExternal" "$@"
|