We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 576f319 commit 4df08a9Copy full SHA for 4df08a9
scripts/merge-py.py
@@ -116,7 +116,7 @@ def clean_up():
116
117
branches = run_cmd("git branch").replace(" ", "").split("\n")
118
119
- for branch in [b for b in branches if x.startswith(BRANCH_PREFIX)]:
+ for branch in [b for b in branches if b.startswith(BRANCH_PREFIX)]:
120
print("Deleting local branch %s" % branch)
121
run_cmd("git branch -D %s" % branch)
122
0 commit comments