diff --git a/build/tools/httpbin.sh b/build/tools/httpbin.sh index 4243e8b497..c627b09d12 100644 --- a/build/tools/httpbin.sh +++ b/build/tools/httpbin.sh @@ -16,7 +16,9 @@ httpbin_launch() { case "$(uname -s)" in Linux) - dist_codename=$(lsb_release --codename --short) + if command -v lsb_release > /dev/null; then + dist_codename=$(lsb_release --codename --short) + fi ;; Darwin)