summaryrefslogtreecommitdiffstats
path: root/bin/json-assert-type
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-05-21 23:52:06 +0200
committertv <tv@shackspace.de>2015-05-21 23:52:06 +0200
commitf8b1e849a6a3bd53f24a4aac70bc904cdb5ff711 (patch)
tree826235e1b776665ab32ee787bb96cd3b6f519d95 /bin/json-assert-type
parentac764394050f6fc39e406799085259d3fc08956a (diff)
deploy: merge next
Diffstat (limited to 'bin/json-assert-type')
-rwxr-xr-xbin/json-assert-type18
1 files changed, 0 insertions, 18 deletions
diff --git a/bin/json-assert-type b/bin/json-assert-type
deleted file mode 100755
index 29cadad6..00000000
--- a/bin/json-assert-type
+++ /dev/null
@@ -1,18 +0,0 @@
-#! /bin/sh
-set -euf
-
-formal_type=$1
-
-actual_value=$2
-actual_type=$(echo $actual_value | jq -r type)
-
-if [ "$actual_type" != "$formal_type" ]; then
- backtrace
- printf 'error: expected %s, got %s\n' \
- "$formal_type" \
- "$actual_type" \
- >&2
- exit 1
-fi
-
-echo "$actual_value"