blob: 726cc9f1772a7933dd4cbd56675b3549c20ae897 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
set -e
[ -n "$DEBUG" ] && set -x
cd "$(dirname "$0")/.."
if ! command -v spicedb >/dev/null 2>&1; then
echo "Install spicedb: https://authzed.com/docs/spicedb/getting-started/installing-spicedb"
exit 1
fi
exec spicedb $@
|