summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-09-12 23:48:15 +0300
committerAndrei Karas <akaras@inbox.ru>2017-09-12 23:48:15 +0300
commitcb7a812df279a0ad57ad19f9338ecad951b974d5 (patch)
tree87020c3f06778b0cae9f9dabb75cbfad06d53912
parent338634d502b16abf36964d4f404417a7fa77b420 (diff)
downloadevol-tools-s20171107.tar.gz
evol-tools-s20171107.tar.bz2
evol-tools-s20171107.tar.xz
evol-tools-s20171107.zip
localserver: add check for wrong date in build.shs20171107s20171023s20170925s20170918
-rwxr-xr-xlocalserver/build.sh1
-rwxr-xr-xlocalserver/checktime.sh9
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