aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-09-07 21:48:11 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-09-07 21:48:11 -0400
commit35fbb7daa975d643ba98a32c5466a9dc93864527 (patch)
tree6248722503eefeeeff4714a415a2f0b0bf12f16c /build.sh
parentc3e164c6845b9b32f132aa37cc9707acba0d9eff (diff)
event order fixes
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/build.sh b/build.sh
deleted file mode 100755
index b2ddb0a..0000000
--- a/build.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-idate=$(date +"%s" -r .git/index)
-odate=$(date +"%s" -r ./.updated)
-
-if (( $idate > $odate )); then
- echo "Project updated, building all..."
- make clean
- make -j4
- touch ./.updated
-else
- echo "Up to date, building..."
- make -j4
-fi