From c1f839101be7d48f6e918e9e969cf0fc3d743ea4 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 7 Dec 2011 12:41:42 +0100 Subject: /assets/bin: ass - add (future) check-truth command --- assets/bin/ass | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'assets') diff --git a/assets/bin/ass b/assets/bin/ass index d29ea7e6..87b750d3 100755 --- a/assets/bin/ass +++ b/assets/bin/ass @@ -2,20 +2,23 @@ set -euf -JOURNAL="/krebs/db/truth" +DB="/krebs/db" +JOURNAL="$DB/truth" -METHOD="$1" -shift +(cd $DB && git pull >/dev/null && echo "pulled new version") + +METHOD="$1"; shift case $METHOD in "create") - echo "`date --utc --rfc-3339=ns` create $1" | tee -a $JOURNAL + echo "`date --utc --rfc-3339=ns` create $1" | check-truth | tee -a $JOURNAL ;; "set") - echo "`date --utc --rfc-3339=ns` set $1 $2 $3" | tee -a $JOURNAL + echo "`date --utc --rfc-3339=ns` set $1 $2 $3" | check-truth | tee -a $JOURNAL ;; *) echo "you are made of stupid!" exit 23 ;; esac +(cd $DB && git commit -a -m bump >/dev/null && git push 1>&2 2>/dev/null && echo "updates pushed")& -- cgit v1.2.3