From eebcf202ff1c789000e48334641a9bbb1b3f59ef Mon Sep 17 00:00:00 2001 From: Conrad Date: Mon, 16 Mar 2020 15:48:20 +0100 Subject: [PATCH] Removed prettier catch --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index f39232f..ea4bf0e 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -41,7 +41,7 @@ npm install --silent --global prettier echo "Prettifing files..." echo "Files:" -prettier $INPUT_PRETTIER_OPTIONS || echo "Problem while prettifying your files with options $INPUT_PRETTIER_OPTIONS." +prettier $INPUT_PRETTIER_OPTIONS # To keep runtime good, just continue if something was changed if ! $INPUT_DRY && _git_changed;