mirror of
https://github.com/archlinux/aur.git
synced 2026-03-07 23:59:33 +01:00
[visual-studio-code-insiders-bin] Launcher improvements
This commit is contained in:
parent
522198bb27
commit
c1742c1b89
3 changed files with 10 additions and 10 deletions
12
.SRCINFO
12
.SRCINFO
|
|
@ -1,6 +1,6 @@
|
|||
pkgbase = visual-studio-code-insiders-bin
|
||||
pkgdesc = Editor for building and debugging modern web and cloud applications (insiders version)
|
||||
pkgver = 1704794235
|
||||
pkgver = 1705642614
|
||||
pkgrel = 1
|
||||
url = https://code.visualstudio.com/
|
||||
arch = x86_64
|
||||
|
|
@ -26,14 +26,14 @@ pkgbase = visual-studio-code-insiders-bin
|
|||
source = visual-studio-code-insiders-bin.sh
|
||||
sha256sums = 288a3d119ff3132f22018026b16becb3ebc595d22d2da552ec41a17983800edc
|
||||
sha256sums = 1868bcb6c3e6d58863609d49fca0ad2d9c48286bdcb8880026a2a969d49e66ac
|
||||
sha256sums = 67d83f676135ca14806aab7292361a4a737f3076527860258176c886cdb3f0c1
|
||||
source_x86_64 = code_x64_1704794235.tar.gz::https://update.code.visualstudio.com/latest/linux-x64/insider
|
||||
sha256sums = 44c99cf30f0ae3ea32c6176b86265cf6c8044de4497b6b45b0c912b5ad5b004c
|
||||
source_x86_64 = code_x64_1705642614.tar.gz::https://update.code.visualstudio.com/latest/linux-x64/insider
|
||||
sha256sums_x86_64 = SKIP
|
||||
source_i686 = code_ia32_1704794235.tar.gz::https://update.code.visualstudio.com/latest/linux-ia32/insider
|
||||
source_i686 = code_ia32_1705642614.tar.gz::https://update.code.visualstudio.com/latest/linux-ia32/insider
|
||||
sha256sums_i686 = SKIP
|
||||
source_aarch64 = code_arm64_1704794235.tar.gz::https://update.code.visualstudio.com/latest/linux-arm64/insider
|
||||
source_aarch64 = code_arm64_1705642614.tar.gz::https://update.code.visualstudio.com/latest/linux-arm64/insider
|
||||
sha256sums_aarch64 = SKIP
|
||||
source_armv7h = code_armhf_1704794235.tar.gz::https://update.code.visualstudio.com/latest/linux-armhf/insider
|
||||
source_armv7h = code_armhf_1705642614.tar.gz::https://update.code.visualstudio.com/latest/linux-armhf/insider
|
||||
sha256sums_armv7h = SKIP
|
||||
|
||||
pkgname = visual-studio-code-insiders-bin
|
||||
|
|
|
|||
4
PKGBUILD
4
PKGBUILD
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
pkgname=visual-studio-code-insiders-bin
|
||||
_pkgname=visual-studio-code-insiders
|
||||
pkgver=1704794235
|
||||
pkgver=1705642614
|
||||
pkgrel=1
|
||||
pkgdesc="Editor for building and debugging modern web and cloud applications (insiders version)"
|
||||
arch=('x86_64' 'i686' 'aarch64' 'armv7h')
|
||||
|
|
@ -33,7 +33,7 @@ source_i686=(code_ia32_${pkgver}.tar.gz::https://update.code.visualstudio.com/la
|
|||
|
||||
sha256sums=('288a3d119ff3132f22018026b16becb3ebc595d22d2da552ec41a17983800edc'
|
||||
'1868bcb6c3e6d58863609d49fca0ad2d9c48286bdcb8880026a2a969d49e66ac'
|
||||
'67d83f676135ca14806aab7292361a4a737f3076527860258176c886cdb3f0c1')
|
||||
'44c99cf30f0ae3ea32c6176b86265cf6c8044de4497b6b45b0c912b5ad5b004c')
|
||||
sha256sums_x86_64=('SKIP')
|
||||
sha256sums_i686=('SKIP')
|
||||
sha256sums_aarch64=('SKIP')
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-~/.config}
|
|||
|
||||
# Allow users to override command-line options
|
||||
if [[ -f $XDG_CONFIG_HOME/code-flags.conf ]]; then
|
||||
CODE_USER_FLAGS="$(sed 's/#.*//' $XDG_CONFIG_HOME/code-flags.conf)"
|
||||
CODE_USER_FLAGS="$(sed 's/#.*//' $XDG_CONFIG_HOME/code-flags.conf | tr '\n' ' ')"
|
||||
fi
|
||||
|
||||
# Launch
|
||||
exec /opt/visual-studio-code-insiders/bin/code-insiders $CODE_USER_FLAGS "$@"
|
||||
exec /opt/visual-studio-code-insiders/bin/code-insiders "$@" $CODE_USER_FLAGS
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue