summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-24 00:52:05 -0600
committermo khan <mo@mokhan.ca>2025-05-24 00:52:05 -0600
commit6fba0823970baf909709055211628c262ab38749 (patch)
tree87736c20a3cdba9e54d6f6e4bf96e25e93b13c48 /bin
parent7b9c49c2481f8a5e62cb035f1ee7e5d254793f16 (diff)
chore: suppress output of command -v
Diffstat (limited to 'bin')
-rwxr-xr-xbin/envoy.sh2
1 files changed, 1 insertions, 1 deletions
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