WHY2/build.sh

13 lines
149 B
Bash

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