From 07a0ac42092eb8c1085ebe2a8ca571ed9251fc0b Mon Sep 17 00:00:00 2001 From: pips Date: Sat, 23 Aug 2025 16:09:16 +0200 Subject: [PATCH] fix(logs): align error message with var names --- entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 5d4b5b5..5b24408 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,17 +1,17 @@ #!/usr/bin/env sh if [ -z "$PLUGIN_GOPRIVATE" ]; then - echo "PLUGIN_GOPRIVATE empty" + echo "goprivate empty" exit 1 fi if [ -z "$PLUGIN_LOGIN" ]; then - echo "PLUGIN_LOGIN empty" + echo "login empty" exit 1 fi if [ -z "$PLUGIN_PASSWORD" ]; then - echo "PLUGIN_PASSWORD empty" + echo "password empty" exit 1 fi