Skip to content

Commit 456aaaf

Browse files
committed
fix: ensure that pushing a new branch for the first time works
1 parent 791cdcf commit 456aaaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/update-demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def update_demo(
6767
uv("lock")
6868
git("add", ".")
6969
git("commit", "-m", f"chore: {last_update_commit} -> {current_commit}", "--no-verify")
70-
git("push")
70+
git("push", "-u", "origin", current_branch)
7171

7272
except Exception as error:
7373
typer.secho(f"error: {error}", fg="red")

0 commit comments

Comments
 (0)