diff options
Diffstat (limited to 'bin/zed')
| -rwxr-xr-x | bin/zed | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,13 @@ #!/bin/sh -go tool godotenv -f .env.local,.env go tool zed --insecure $@ +set -e +[ -n "$DEBUG" ] && set -x + +cd "$(dirname "$0")/.." + +if ! command -v zed >/dev/null 2>&1; then + echo "Install zed: https://github.com/authzed/zed" + exit 1 +fi + +./bin/tool godotenv -f .env.local,.env go tool zed --insecure $@ |
