WHY2/build.sh

13 lines
151 B
Bash
Raw Permalink Normal View History

2022-04-22 18:36:35 +02:00
#!/bin/bash
2022-03-20 18:12:25 +01:00
# Remove versions.json
rm -f versions.json
2022-04-04 17:48:03 +02:00
# Build project
2022-03-20 18:12:25 +01:00
make
2022-04-04 17:48:03 +02:00
# Check for 'debug' flag
2022-03-20 18:12:25 +01:00
if [ "$1" == "debug" ]; then
./out/why2
fi