From 83d32ea14368e22c5483595a5943f7ce815a0373 Mon Sep 17 00:00:00 2001 From: Boris Date: Thu, 15 Feb 2024 10:36:10 +0100 Subject: [PATCH] fix: make echo-ing env variables more clear Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 9642879da..e3fb504d9 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,8 +1,8 @@ #!/bin/bash # export ENVIRONMENT -echo $DEBUG -echo $ENVIRONMENT +echo "Debug mode: $DEBUG" +echo "Environment: $ENVIRONMENT" if [ "$ENVIRONMENT" != "local" ]; then echo "Running fetch_secret.py"