mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-12-23 08:52:43 +03:00
21 lines
336 B
Bash
21 lines
336 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
CALLER_DIR=$( pwd )
|
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
|
|
|
SCRIPT_DIR=$( pwd )
|
|
|
|
cd "../../../VSCode-win32-${VSCODE_ARCH}/resources/app"
|
|
|
|
jsonTmp=$( jq "del(.updateUrl)" product.json )
|
|
echo "${jsonTmp}" > product.json && unset jsonTmp
|
|
|
|
cd "${SCRIPT_DIR}"
|
|
|
|
./build.sh "updates-disabled"
|
|
|
|
cd "${CALLER_DIR}"
|