From 7e8aa097d4368d609f609e1e1bf14a0377b7a411 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Mon, 23 Oct 2023 16:15:24 -0500 Subject: [PATCH] Use correct exit code for 'command not found' --- make-client-tarball | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make-client-tarball b/make-client-tarball index c38eb6e..a7a08e5 100755 --- a/make-client-tarball +++ b/make-client-tarball @@ -9,7 +9,7 @@ elif test -x /usr/libexec/platform-python; then python=/usr/libexec/platform-python else echo >&2 "Can't find Python" - exit 255 + exit 127 fi exec "$python" "$(dirname "$0")/make_client_tarball.py" "$@"