WHY2/build.sh
2022-04-22 18:36:35 +02:00

13 lines
151 B
Bash

#!/bin/bash
# Remove versions.json
rm -f versions.json
# Build project
make
# Check for 'debug' flag
if [ "$1" == "debug" ]; then
./out/why2
fi