1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 12:40:36 +00:00

Run make clean before creating distribution

This commit is contained in:
Matthew Kilgore 2022-05-11 00:11:55 -04:00
parent cf7cb21258
commit 8f337a7333

View file

@ -1,5 +1,17 @@
#!/bin/bash
case "$buildPlatform" in
windows-latest)
./internal/c/c_compiler/bin/mingw32-make.exe OS=win clean
;;
ubuntu-latest)
make OS=lnx clean
;;
macos-latest)
make OS=osx clean
;;
esac
buildPlatform=$1
format=