diff options
author | Joshua M. Boniface <joshua@boniface.me> | 2024-02-16 03:26:24 -0500 |
---|---|---|
committer | Joshua M. Boniface <joshua@boniface.me> | 2024-02-16 03:26:24 -0500 |
commit | bed797f3116c0a78626a5c09a801f9f521bd2134 (patch) | |
tree | 12e484aad04deb4586bd8e51c3121f5c9e0a9341 | |
parent | Ensure submodule update errors aren't fatal (diff) | |
download | jellyfin-packaging-bed797f3116c0a78626a5c09a801f9f521bd2134.tar.gz jellyfin-packaging-bed797f3116c0a78626a5c09a801f9f521bd2134.tar.bz2 jellyfin-packaging-bed797f3116c0a78626a5c09a801f9f521bd2134.zip |
Check out the origin master HEAD
-rwxr-xr-x | checkout.py | 2 |
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 |