From f043730c30483b78fd091db9f8c9543a89899015 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 12 Mar 2024 23:29:40 -0400 Subject: Add Windows installer submodule --- checkout.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'checkout.py') diff --git a/checkout.py b/checkout.py index 3b6932e..4dad742 100755 --- a/checkout.py +++ b/checkout.py @@ -54,7 +54,10 @@ for submodule in submodules.keys(): if target_release == "master": target_head = "origin/master" else: - target_head = f"refs/tags/{target_release}" + if submodule == "jellyfin-server-windows": + target_head = "origin/master" + else: + target_head = f"refs/tags/{target_release}" # Checkout the given head and reset the working tree submodules[submodule].head.reference = target_head submodules[submodule].head.reset(index=True, working_tree=True) -- cgit