Skip to content

Commit

Permalink
Fixed a bug with new dry option
Browse files Browse the repository at this point in the history
  • Loading branch information
creyD committed Mar 16, 2020
1 parent 0301881 commit fc801e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fc801e7

Please sign in to comment.