Skip to content

Commit c8d9181

Browse files
committed
Migrate download links to Github
1 parent 4444a08 commit c8d9181

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def save(self):
378378
# Download and extract the vanilla assets
379379
assets_path = "assets"
380380
vanilla_archive = "vanilla.7z"
381-
assets_url = "http://07th-mod.com/archive/vanilla.7z"
381+
assets_url = f"https://github.com/07th-mod/patch-releases/releases/download/developer-v1.0/{vanilla_archive}"
382382
vanilla_folder_path = os.path.join(assets_path, "vanilla")
383383
vanilla_fully_extracted = os.path.exists(vanilla_folder_path) and not os.path.exists(vanilla_archive)
384384
if lastModifiedManager.isRemoteModifiedAndUpdateMemory(assets_url) or force_download or not vanilla_fully_extracted:
@@ -399,7 +399,7 @@ def save(self):
399399
# Download and extract UABE
400400
uabe_folder = "64bit"
401401
uabe_archive = "AssetsBundleExtractor_2.2stabled_64bit_with_VC2010.zip"
402-
uabe_url = f"http://07th-mod.com/archive/{uabe_archive}"
402+
uabe_url = f"https://github.com/07th-mod/patch-releases/releases/download/developer-v1.0/{uabe_archive}"
403403
uabe_fully_extracted = os.path.exists(uabe_folder) and not os.path.exists(uabe_archive)
404404
if lastModifiedManager.isRemoteModifiedAndUpdateMemory(uabe_url) or force_download or not uabe_fully_extracted:
405405
print("Downloading and Extracting UABE")

0 commit comments

Comments
 (0)