mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
e08e4d3fe1
* Move `--ms-enable-electron-run-as-node` to a later location, which is not fatal in Electron builds that don't know it * undo bad change
82 lines
2.2 KiB
Bash
Executable file
82 lines
2.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; }
|
|
ROOT=$(dirname "$(dirname "$(realpath "$0")")")
|
|
else
|
|
ROOT=$(dirname "$(dirname "$(readlink -f $0)")")
|
|
# If the script is running in Docker using the WSL2 engine, powershell.exe won't exist
|
|
if grep -qi Microsoft /proc/version && type powershell.exe > /dev/null 2>&1; then
|
|
IN_WSL=true
|
|
fi
|
|
fi
|
|
|
|
function code() {
|
|
cd "$ROOT"
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
NAME=`node -p "require('./product.json').nameLong"`
|
|
CODE="./.build/electron/$NAME.app/Contents/MacOS/Electron"
|
|
else
|
|
NAME=`node -p "require('./product.json').applicationName"`
|
|
CODE=".build/electron/$NAME"
|
|
fi
|
|
|
|
# Get electron, compile, built-in extensions
|
|
if [[ -z "${VSCODE_SKIP_PRELAUNCH}" ]]; then
|
|
node build/lib/preLaunch.js
|
|
fi
|
|
|
|
# Manage built-in extensions
|
|
if [[ "$1" == "--builtin" ]]; then
|
|
exec "$CODE" build/builtin
|
|
return
|
|
fi
|
|
|
|
# Configuration
|
|
export NODE_ENV=development
|
|
export VSCODE_DEV=1
|
|
export VSCODE_CLI=1
|
|
export ELECTRON_ENABLE_STACK_DUMPING=1
|
|
export ELECTRON_ENABLE_LOGGING=1
|
|
|
|
# Launch Code
|
|
exec "$CODE" . "$@"
|
|
}
|
|
|
|
function code-wsl()
|
|
{
|
|
HOST_IP=$(echo "" | powershell.exe -noprofile -Command "& {(Get-NetIPAddress | Where-Object {\$_.InterfaceAlias -like '*WSL*' -and \$_.AddressFamily -eq 'IPv4'}).IPAddress | Write-Host -NoNewline}")
|
|
export DISPLAY="$HOST_IP:0"
|
|
|
|
# in a wsl shell
|
|
ELECTRON="$ROOT/.build/electron/Code - OSS.exe"
|
|
if [ -f "$ELECTRON" ]; then
|
|
local CWD=$(pwd)
|
|
cd $ROOT
|
|
export WSLENV=ELECTRON_RUN_AS_NODE/w:VSCODE_DEV/w:$WSLENV
|
|
local WSL_EXT_ID="ms-vscode-remote.remote-wsl"
|
|
local WSL_EXT_WLOC=$(echo "" | VSCODE_DEV=1 ELECTRON_RUN_AS_NODE=1 "$ROOT/.build/electron/Code - OSS.exe" "out/cli.js" --ms-enable-electron-run-as-node --locate-extension $WSL_EXT_ID)
|
|
cd $CWD
|
|
if [ -n "$WSL_EXT_WLOC" ]; then
|
|
# replace \r\n with \n in WSL_EXT_WLOC
|
|
local WSL_CODE=$(wslpath -u "${WSL_EXT_WLOC%%[[:cntrl:]]}")/scripts/wslCode-dev.sh
|
|
$WSL_CODE "$ROOT" "$@"
|
|
exit $?
|
|
else
|
|
echo "Remote WSL not installed, trying to run VSCode in WSL."
|
|
fi
|
|
fi
|
|
}
|
|
|
|
if [ "$IN_WSL" == "true" ] && [ -z "$DISPLAY" ]; then
|
|
code-wsl "$@"
|
|
elif [ -f /mnt/wslg/versions.txt ]; then
|
|
code --disable-gpu "$@"
|
|
else
|
|
code "$@"
|
|
fi
|
|
|
|
exit $?
|