From 6fba0823970baf909709055211628c262ab38749 Mon Sep 17 00:00:00 2001 From: mo khan Date: Sat, 24 May 2025 00:52:05 -0600 Subject: chore: suppress output of command -v --- bin/envoy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/envoy.sh b/bin/envoy.sh index 7f2dcee..692167c 100755 --- a/bin/envoy.sh +++ b/bin/envoy.sh @@ -24,7 +24,7 @@ if [ -z "$HMAC_SESSION_SECRET" ]; then export HMAC_SESSION_SECRET="$OAUTH_CLIENT_SECRET" fi -if ! command -v envoy; then +if ! command -v envoy > /dev/null 2>&1; then echo "envoy could not be found: https://www.envoyproxy.io/docs/envoy/latest/start/install" exit 1 fi -- cgit v1.2.3