From db2479e4411441e8edc9188d002ee73b3d3e8e4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= Date: Mon, 12 Jul 2021 15:01:03 +0200 Subject: [PATCH] fix: typo in error message for missing wget command --- wait-for | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wait-for b/wait-for index b0eb09b..59112a6 100755 --- a/wait-for +++ b/wait-for @@ -54,7 +54,7 @@ wait_for() { ;; wget) if ! command -v wget >/dev/null; then - echoerr 'nc command is missing!' + echoerr 'wget command is missing!' exit 1 fi ;;