Skip to content

Commit e02f046

Browse files
authored
Stop erroring on ensure_sha for now (#426)
1 parent b272bca commit e02f046

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_releaser/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ def ensure_sha():
604604
run(f"git fetch {remote_name} {branch}", echo=True)
605605
sha = run(f"git rev-parse {remote_name}/{branch}", echo=True)
606606
if sha != current_sha:
607-
raise ValueError(f"{branch} current sha {sha} is not equal to expected sha {current_sha}")
607+
log(f"{branch} current sha {sha} is not equal to expected sha {current_sha}")
608608

609609

610610
def get_gh_object(dry_run=False, **kwargs):

0 commit comments

Comments
 (0)