summaryrefslogtreecommitdiffstats
path: root/build.sh
blob: 518239071b1584ad79231fd05e0e778fa128b2a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
# Exit with nonzero exit code if anything fails
set -e 
cd src
make
# if main exists in ../, remove it
if [ -f ../main ]; then
    rm ../main
fi
# move main to ../
cp main ../main