mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-27 13:40:25 +00:00
39 lines
1.4 KiB
Bash
Executable File
39 lines
1.4 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.
|
|
|
|
# Symlink bin command to /usr/bin
|
|
rm -f /usr/bin/@@NAME@@
|
|
ln -s /usr/share/@@NAME@@/bin/@@NAME@@ /usr/bin/@@NAME@@
|
|
|
|
# Register code in the alternatives system
|
|
# Priority of 0 should never make code the default editor in auto mode as most
|
|
# developers would prefer a terminal editor as the default.
|
|
update-alternatives --install /usr/bin/editor editor /usr/bin/@@NAME@@ 0
|
|
|
|
# Install the desktop entry
|
|
if hash desktop-file-install 2>/dev/null; then
|
|
desktop-file-install /usr/share/applications/@@NAME@@.desktop
|
|
fi
|
|
|
|
if [ "@@NAME@@" != "code-oss" ]; then
|
|
# Remove the legacy bin command if this is the stable build
|
|
if [ "@@NAME@@" = "code" ]; then
|
|
rm -f /usr/local/bin/code
|
|
fi
|
|
|
|
# Register apt repository
|
|
get_apt_config_value() {
|
|
echo $(apt-config dump | grep "$1 " | sed -e "s/$1 \"//" -e "s/\";$//")
|
|
}
|
|
|
|
APT_DIR=$(get_apt_config_value Dir)
|
|
APT_ETC=$APT_DIR$(get_apt_config_value Dir::Etc)
|
|
APT_SOURCE_PARTS=$APT_ETC$(get_apt_config_value Dir::Etc::sourceparts)
|
|
CODE_SOURCE_LIST=$APT_SOURCE_PARTS/visual-studio-@@NAME@@.list
|
|
|
|
rm -f $CODE_SOURCE_LIST
|
|
# TODO: #2973: Enable once the apt repository is signed
|
|
#echo "deb @@UPDATEURL@@/api/deb/@@QUALITY@@/@@ARCHITECTURE@@/ /" > $CODE_SOURCE_LIST
|
|
fi |