This commit is contained in:
eric
2026-04-04 00:03:05 -05:00
parent a57303c579
commit 415fdd3238
10 changed files with 255 additions and 65 deletions

View File

@@ -174,6 +174,15 @@ on property:init.svc.zygote=stopped
self._validate_archive()
return
if not self.custom_url and os.path.isfile(self.dl_file_name):
self.release_version = self._cached_version() or "bundled"
print_color(
"Using bundled Kitsune Mask {} ...".format(self.release_version),
bcolors.GREEN,
)
self._validate_archive()
return
if self.custom_url:
self.dl_link = self.custom_url
self.release_version = "url:" + os.path.basename(self.custom_url)