diff options
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/envoy | 5 | ||||
| -rwxr-xr-x | bin/spicedb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ #!/bin/sh +if ! command -v envoy >/dev/null 2>&1; then + echo "Install envoy: https://www.envoyproxy.io/docs/envoy/latest/start/install" + exit 1 +fi + exec envoy $@ diff --git a/bin/spicedb b/bin/spicedb index 6c43a153..5d4cf0bb 100755 --- a/bin/spicedb +++ b/bin/spicedb @@ -5,4 +5,4 @@ if ! command -v spicedb >/dev/null 2>&1; then exit 1 fi -exec spicedb "$@" +exec spicedb $@ |
