From f3c53282aaa8257962ec501b16a90671e31af01e Mon Sep 17 00:00:00 2001 From: "Federico M. Facca" Date: Wed, 28 Jun 2023 12:23:59 +0200 Subject: [PATCH] fix bug --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index f9ee855..2e4ce85 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -79,8 +79,8 @@ if _git_changed; then if $INPUT_DRY; then echo "Unpretty Files Changes:" git diff - if INPUT_DRY_NO_FAIL; then - echo "There are chaanges that won't be commited, you can use an external job to do so". + if $INPUT_DRY_NO_FAIL; then + echo "There are changes that won't be commited, you can use an external job to do so". else echo "Finishing dry-run. Exiting before committing." exit 1