diff options
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 12 |
1 files changed, 12 insertions, 0 deletions
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 |