Skip to content

Commit

Permalink
Print out error for npm upload
Browse files Browse the repository at this point in the history
(if it is not a previously published version error)
  • Loading branch information
krassowski committed Mar 25, 2024
1 parent ac38c6a commit 4be4d4d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions jupyter_releaser/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,8 @@ def publish_assets(
stderr = e.stderr
if "EPUBLISHCONFLICT" in stderr or "previously published versions" in stderr:
continue
else:
util.log(stderr)
raise e
found = True
else:
Expand Down

0 comments on commit 4be4d4d

Please sign in to comment.