From ba758bc158a1fa203adbcccc387dca2aea59549b Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 29 Nov 2016 20:49:47 -0500 Subject: one more test --- build.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 build.sh diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..bbda76c --- /dev/null +++ b/build.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +idate=$(date +"%s" -r .git/index) +odate=$(date +"%s" -r ./.updated) + +echo $idate +echo $odate + +if (( $idate > $odate )); then + echo "frig" + touch ./.updated +fi -- cgit v1.2.3