Skip to content

Commit

Permalink
fix: uncomment commands in release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Dara Hayes committed Mar 4, 2019
1 parent e9ff269 commit cb9c41c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/publishRelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ fi

if [[ "$(echo $TAG | grep -E $RELEASE_SYNTAX)" == "$TAG" ]]; then
echo "publishing a new release: $TAG"
# npm publish
npm publish
elif [[ "$(echo $TAG | grep -E $PRERELEASE_SYNTAX)" == "$TAG" ]]; then
echo "publishing a new pre release: $TAG"
# npm publish --tag next
npm publish --tag next
else
echo "Error: the tag $TAG is not valid. exiting..."
exit 1
Expand Down

0 comments on commit cb9c41c

Please sign in to comment.