From df516355bb8f2b772b1be950f728f99faea61db1 Mon Sep 17 00:00:00 2001 From: mo khan Date: Mon, 14 Jul 2025 14:49:42 -0600 Subject: chore: check if envoy is installed and pass raw args to program --- bin/envoy | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bin/envoy') diff --git a/bin/envoy b/bin/envoy index ede6290c..5f2ea9ca 100755 --- a/bin/envoy +++ b/bin/envoy @@ -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 $@ -- cgit v1.2.3