mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-11-24 00:42:09 +03:00
108166f640
Co-authored-by: Alexander Hass <4450722+alexhass@users.noreply.github.com>
12 lines
248 B
Bash
Executable File
12 lines
248 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# to run with Bash: "C:\Program Files\Git\bin\bash.exe" ./build/build_windows.sh
|
|
|
|
rm -rf VSCode*
|
|
rm -rf vscode
|
|
rm -rf build/windows/msi/releasedir
|
|
|
|
. get_repo.sh
|
|
|
|
SHOULD_BUILD=yes CI_BUILD=no OS_NAME=windows VSCODE_ARCH=x64 . build.sh
|