Skip to content

Commit

Permalink
refactor: adding back silent to npm install to container entry point …
Browse files Browse the repository at this point in the history
…script
  • Loading branch information
juancarlosjr97 committed Feb 11, 2024
1 parent a6c987e commit ec9c67d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release-it-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ RELEASE_IT_PLUGINS_SEPARATED="${RELEASE_IT_PLUGINS_LIST[*]}"

# To streamline the installation process, globally install release-it along with any required plugins.
# shellcheck disable=SC2086 # The variable RELEASE_IT_PLUGINS_SEPARATED is appropriately split to facilitate the installation of plugins.
npm install -g release-it@"${RELEASE_IT_VERSION}" ${RELEASE_IT_PLUGINS_SEPARATED}
npm install --silent -g release-it@"${RELEASE_IT_VERSION}" ${RELEASE_IT_PLUGINS_SEPARATED}

# Execute the provided command
exec "$@"

0 comments on commit ec9c67d

Please sign in to comment.