aboutsummaryrefslogtreecommitdiff
path: root/checkout.py
diff options
context:
space:
mode:
Diffstat (limited to 'checkout.py')
-rwxr-xr-xcheckout.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkout.py b/checkout.py
index ab9d970..f336203 100755
--- a/checkout.py
+++ b/checkout.py
@@ -51,7 +51,7 @@ if target_release != "master":
for submodule in submodules.keys():
if target_release == "master":
- target_head = "refs/heads/master"
+ target_head = "origin/master"
else:
target_head = f"refs/tags/{target_release}"
# Checkout the given head and reset the working tree
bgstack15