mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 19:44:25 +01:00
Build, install and run: gulp vscode-linux-packages sudo dpkg -i out-linux/vscode-amd64.deb code . Installing the package does the following: - Puts VSCode dir at /usr/share/code - Puts code.sh launcher in /usr/bin - Defines a .desktop file to properly integrate with the launcher Fixes #2679
33 lines
1.0 KiB
Bash
Executable File
33 lines
1.0 KiB
Bash
Executable File
#!/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.
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
if [ -x "/Applications/Visual Studio Code.app" ]; then
|
|
VSCODE_DIR="/Applications/Visual Studio Code.app/Contents/MacOS"
|
|
elif [ -x "$HOME/Applications/Visual Studio Code.app" ]; then
|
|
VSCODE_DIR="$HOME/Applications/Visual Studio Code.app/Contents/MacOS"
|
|
else
|
|
echo "Could not locate Visual Studio Code.app"
|
|
exit 1
|
|
fi
|
|
ELECTRON_FILE="Electron"
|
|
else
|
|
VSCODE_DIR="/usr/share/code"
|
|
if [ -x "$VSCODE_DIR/Code" ]; then
|
|
ELECTRON_FILE="Code"
|
|
elif [ -x "$VSCODE_DIR/Code - OSS" ]; then
|
|
ELECTRON_FILE="Code - OSS"
|
|
else
|
|
echo "Could not locate Visual Studio Code executable."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
VSCODE_LAUNCHER="$VSCODE_DIR/resources/app/resources/common/bin/launcher.js"
|
|
|
|
ATOM_SHELL_INTERNAL_RUN_AS_NODE=1 VSCODE_PATH="$VSCODE_DIR/$ELECTRON_FILE" \
|
|
"$VSCODE_DIR/$ELECTRON_FILE" $VSCODE_LAUNCHER "$@"
|
|
exit $?
|