diff options
Diffstat (limited to 'localserver')
-rwxr-xr-x | localserver/build.sh | 1 | ||||
-rwxr-xr-x | localserver/checktime.sh | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/localserver/build.sh b/localserver/build.sh index ee8a93c..e299d4c 100755 --- a/localserver/build.sh +++ b/localserver/build.sh @@ -1,5 +1,6 @@ #!/usr/bin/env bash export DIR=`pwd` +./checktime.sh source ./clean.sh ./build.sh old diff --git a/localserver/checktime.sh b/localserver/checktime.sh new file mode 100755 index 0000000..9ca0c95 --- /dev/null +++ b/localserver/checktime.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +year=$(date "+%Y") + +if [[ $year -lt 2017 ]]; then + date + echo "Error: Date time is wrong. Please fix time. See man date" + exit 1 +fi
\ No newline at end of file |