Skip to content

Commit 1ac6edc

Browse files
committed
scripts/release: add full repository URL to push commands
1 parent 6058571 commit 1ac6edc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/release

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,8 +547,12 @@ def bump(new_version, tag, commit, force):
547547
do_git_tag(tag=version_tag)
548548
print("version bumped from {} to {}".format(old_version, new_version))
549549

550+
repo = "git@github.com:LiberTEM/LiberTEM-live.git"
551+
550552
if tag:
551-
print("now, push the new version: $ git push && git push origin {}".format(version_tag))
553+
print("now, push the new version: $ git push {} && git push {} {}".format(
554+
repo, repo, version_tag)
555+
)
552556
else:
553557
if commit:
554558
print("now, tag as needed and push")

0 commit comments

Comments
 (0)