aboutsummaryrefslogtreecommitdiff
path: root/checkout.py
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-02-16 03:26:24 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-02-16 03:26:24 -0500
commitbed797f3116c0a78626a5c09a801f9f521bd2134 (patch)
tree12e484aad04deb4586bd8e51c3121f5c9e0a9341 /checkout.py
parentEnsure submodule update errors aren't fatal (diff)
downloadjellyfin-packaging-bed797f3116c0a78626a5c09a801f9f521bd2134.tar.gz
jellyfin-packaging-bed797f3116c0a78626a5c09a801f9f521bd2134.tar.bz2
jellyfin-packaging-bed797f3116c0a78626a5c09a801f9f521bd2134.zip
Check out the origin master HEAD
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