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 d578931 commit 860e059Copy full SHA for 860e059
installation_and_upgrade/ibex_install_utils/tasks/git_tasks.py
@@ -52,7 +52,9 @@ def checkout_to_release_branch(self) -> None:
52
print(f"Error running git status: {e}")
53
54
try:
55
- subprocess.check_call(f"cd /d {EPICS_PATH} && git checkout -b %COMPUTERNAME%", shell=True)
+ subprocess.check_call(
56
+ f"cd /d {EPICS_PATH} && git checkout -b %COMPUTERNAME%", shell=True
57
+ )
58
print("Checked out to the new release branch")
59
subprocess.check_call(
60
f"cd /d {EPICS_PATH} && git push -u origin %COMPUTERNAME%", shell=True
0 commit comments