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 f7dd35e commit 3e693b4Copy full SHA for 3e693b4
installation_and_upgrade/ibex_install_utils/tasks/git_tasks.py
@@ -45,6 +45,12 @@ def checkout_to_release_branch(self) -> None:
45
except subprocess.CalledProcessError as e:
46
print(f"Error fetching remote: {e}")
47
48
+ try:
49
+ # run a git status to rebuild index if needed
50
+ subprocess.check_call(f"cd /d {EPICS_PATH} && git status", shell=True)
51
+ except subprocess.CalledProcessError as e:
52
+ print(f"Error running git status: {e}")
53
+
54
# this sets upstream tracking on all local branches not just current one
55
try:
56
subprocess.check_call(
0 commit comments