mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 08:38:56 +01:00
Fixes issue #39892 There's one minor gotchya: this script tests for a modern WSL release (which supports the WSLENV feature) using the existence of /bin/wslpath. Per https://docs.microsoft.com/en-us/windows/wsl/release-notes, wslpath was added in build 17046 but WSLENV is only supported in the subsequent build (17063). Both those builds were only shipped as Windows insider builds, so this test should be safe enough.
30 lines
1.1 KiB
Bash
30 lines
1.1 KiB
Bash
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
NAME="@@NAME@@"
|
|
VSCODE_PATH="$(dirname "$(dirname "$(realpath "$0")")")"
|
|
ELECTRON="$VSCODE_PATH/$NAME.exe"
|
|
if grep -q Microsoft /proc/version; then
|
|
if [ -x /bin/wslpath ]; then
|
|
# On recent WSL builds, we just need to set WSLENV so that
|
|
# ELECTRON_RUN_AS_NODE is visible to the win32 process
|
|
export WSLENV=ELECTRON_RUN_AS_NODE/w:$WSLENV
|
|
CLI=$(wslpath -m "$VSCODE_PATH/resources/app/out/cli.js")
|
|
else
|
|
# If running under older WSL, don't pass cli.js to Electron as
|
|
# environment vars cannot be transferred from WSL to Windows
|
|
# See: https://github.com/Microsoft/BashOnWindows/issues/1363
|
|
# https://github.com/Microsoft/BashOnWindows/issues/1494
|
|
"$ELECTRON" "$@"
|
|
exit $?
|
|
fi
|
|
elif [ "$(expr substr $(uname -s) 1 9)" == "CYGWIN_NT" ]; then
|
|
CLI=$(cygpath -m "$VSCODE_PATH/resources/app/out/cli.js")
|
|
else
|
|
CLI="$VSCODE_PATH/resources/app/out/cli.js"
|
|
fi
|
|
ELECTRON_RUN_AS_NODE=1 "$ELECTRON" "$CLI" "$@"
|
|
exit $?
|