summaryrefslogtreecommitdiffstats
path: root/Cancer/assets/bin/ass
diff options
context:
space:
mode:
authormakefu <root@pigstarter.de>2013-12-30 14:34:38 +0100
committermakefu <root@pigstarter.de>2013-12-30 14:34:38 +0100
commit08aa5e406a1f7b39182e79ea4eb7fabf7d61eaa3 (patch)
tree2db1a54f336167cc3cc3d5f74c77d029fe7e7470 /Cancer/assets/bin/ass
parent133e49566c74f1d21c28536ed31d1514725ed49b (diff)
//Cancer -> //
because that is what painload is all about
Diffstat (limited to 'Cancer/assets/bin/ass')
-rwxr-xr-xCancer/assets/bin/ass24
1 files changed, 0 insertions, 24 deletions
diff --git a/Cancer/assets/bin/ass b/Cancer/assets/bin/ass
deleted file mode 100755
index 5a4dade4..00000000
--- a/Cancer/assets/bin/ass
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-set -euf
-
-HERE=$(dirname $(readlink -f $0))
-DB="$HERE/../../db"
-JOURNAL="$DB/truth"
-(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" | $HERE/check-truth | tee -a $JOURNAL
-;;
-"set")
- echo "`date --utc --rfc-3339=ns` set $1 $2 $3" | $HERE/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")&