Skip to content

Commit 3382c9a

Browse files
committed
Update to main branch
1 parent 2ebdcdd commit 3382c9a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

updater.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ def __init__(self, utils_instance=None, github_instance=None, resource_fetcher_i
4848
self.fetcher = resource_fetcher_instance if resource_fetcher_instance else resource_fetcher.ResourceFetcher(utils_instance=self.utils)
4949
self.run = run_instance.run if run_instance else run.Run().run
5050
self.integrity_checker = integrity_checker_instance if integrity_checker_instance else integrity_checker.IntegrityChecker(utils_instance=self.utils)
51-
self.remote_manifest_url = "https://nightly.link/lzhoang2801/OpCore-Simplify/workflows/generate-manifest/add-gui-support/manifest.json.zip"
52-
self.download_repo_url = "https://github.com/lzhoang2801/OpCore-Simplify/archive/refs/heads/add-gui-support.zip"
51+
self.remote_manifest_url = "https://nightly.link/lzhoang2801/OpCore-Simplify/workflows/generate-manifest/main/manifest.json.zip"
52+
self.download_repo_url = "https://github.com/lzhoang2801/OpCore-Simplify/archive/refs/heads/main.zip"
5353
self.temporary_dir = tempfile.mkdtemp()
5454
self.root_dir = os.path.dirname(os.path.realpath(__file__))
5555

@@ -151,7 +151,7 @@ def update_files(self, files_to_update, dialog=None):
151151
return True
152152

153153
try:
154-
target_dir = os.path.join(self.temporary_dir, "OpCore-Simplify-add-gui-support")
154+
target_dir = os.path.join(self.temporary_dir, "OpCore-Simplify-main")
155155

156156
if not os.path.exists(target_dir):
157157
self.utils.log_message("[UPDATER] Target directory not found: {}".format(target_dir), level="ERROR")

0 commit comments

Comments
 (0)