Skip to content

Commit

Permalink
Stop erroring on ensure_sha for now (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Oct 6, 2022
1 parent b272bca commit e02f046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_releaser/util.py
Expand Up @@ -604,7 +604,7 @@ def ensure_sha():
run(f"git fetch {remote_name} {branch}", echo=True)
sha = run(f"git rev-parse {remote_name}/{branch}", echo=True)
if sha != current_sha:
raise ValueError(f"{branch} current sha {sha} is not equal to expected sha {current_sha}")
log(f"{branch} current sha {sha} is not equal to expected sha {current_sha}")


def get_gh_object(dry_run=False, **kwargs):
Expand Down

0 comments on commit e02f046

Please sign in to comment.