From fc801e7c7aae5dc838cc017827eca06d0fc20ad7 Mon Sep 17 00:00:00 2001 From: Conrad Date: Mon, 16 Mar 2020 15:36:25 +0100 Subject: [PATCH] Fixed a bug with new dry option --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 01a0ddb..f39232f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -44,7 +44,7 @@ echo "Files:" prettier $INPUT_PRETTIER_OPTIONS || echo "Problem while prettifying your files with options $INPUT_PRETTIER_OPTIONS." # To keep runtime good, just continue if something was changed -if [! $INPUT_DRY] && [_git_changed]; +if ! $INPUT_DRY && _git_changed; then # Calling method to configure the git environemnt _git_setup