Skip to content

Commit

Permalink
Remove --silent argument from yarn add commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ebronson68 committed Dec 10, 2024
1 parent b9fe836 commit eadb661
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ esac

case $INPUT_PRETTIER_VERSION in
false)
yarn add --silent prettier
yarn add prettier
;;
*)
yarn add --silent prettier@$INPUT_PRETTIER_VERSION
yarn add prettier@$INPUT_PRETTIER_VERSION
;;
esac

Expand All @@ -64,7 +64,7 @@ if [ -n "$INPUT_PRETTIER_PLUGINS" ]; then
exit 1
fi
done
yarn add --silent $INPUT_PRETTIER_PLUGINS
yarn add $INPUT_PRETTIER_PLUGINS
fi
)

Expand Down

0 comments on commit eadb661

Please sign in to comment.