summaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/build.sh b/build.sh
deleted file mode 100755
index 5182390..0000000
--- a/build.sh
+++ /dev/null
@@ -1,11 +0,0 @@
1#!/bin/bash
2# Exit with nonzero exit code if anything fails
3set -e
4cd src
5make
6# if main exists in ../, remove it
7if [ -f ../main ]; then
8 rm ../main
9fi
10# move main to ../
11cp main ../main