From 0769a0f088686c3ae4f0a7d7a0ef09798e70d3f1 Mon Sep 17 00:00:00 2001 From: CorpNewt <12772521+corpnewt@users.noreply.github.com> Date: Sat, 12 Oct 2019 18:29:07 -0500 Subject: [PATCH] Switch to the official clover repo As Dids' clover-builder repo pulls its sources from sourceforge, but Slice has moved to github - it is behind. The latest version available on sf right now is r5093 which seems to have a number of issues with network kexts in the internet install environment. --- MakeInstall.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MakeInstall.py b/MakeInstall.py index 7b999d0..148aff8 100755 --- a/MakeInstall.py +++ b/MakeInstall.py @@ -22,7 +22,8 @@ class WinUSB: self.z_name = "7z.exe" self.bi_url = "https://raw.githubusercontent.com/corpnewt/gibMacOS/master/Scripts/BOOTICEx64.exe" self.bi_name = "BOOTICEx64.exe" - self.clover_url = "https://api.github.com/repos/dids/clover-builder/releases/latest" + # self.clover_url = "https://api.github.com/repos/dids/clover-builder/releases/latest" + self.clover_url = "https://api.github.com/repos/CloverHackyColor/CloverBootloader/releases/latest" # From Tim Sutton's brigadier: https://github.com/timsutton/brigadier/blob/master/brigadier self.z_path = None self.z_path64 = os.path.join(os.environ['SYSTEMDRIVE'] + "\\", "Program Files", "7-Zip", "7z.exe")