1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-05-12 12:00:13 +00:00
QB64-PE/.ci/bootstrap.sh
Roland Heyder 39a35626c1 Step 9: Update GitHub Actions
- rename build artifact names and distribution archive names
- this step completes file name related changes (based on extension, more may come based on "qb64" string)
2022-08-11 23:04:07 +02:00

13 lines
188 B
Bash
Executable file

#!/bin/bash
OS=$1
echo -n "Bootstrapping QB64-PE..."
make -j8 OS=$OS BUILD_QB64=y EXE=./qb64pe_bootstrap
if [ $? -ne 0 ]; then
echo "QB64-PE bootstrap failed"
exit 1
fi
echo "Done"