mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-12-20 15:31:30 +03:00
12 lines
249 B
Bash
Executable File
12 lines
249 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
|