We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d9181 commit ee00947Copy full SHA for ee00947
build.py
@@ -385,6 +385,7 @@ def save(self):
385
print("Downloading and Extracting Vanilla assets")
386
pathlib.Path(vanilla_archive).unlink(missing_ok=True)
387
if os.path.exists(vanilla_folder_path):
388
+ print("Attempting to remove old vanilla folder...")
389
shutil.rmtree(vanilla_folder_path)
390
391
download(assets_url)
@@ -434,6 +435,8 @@ def save(self):
434
435
working_cargo = True
436
except:
437
print("No working Rust/cargo found - download binary release of UI compiler...")
438
+ if os.path.exists('ui-compiler.exe'):
439
+ os.remove('ui-compiler.exe')
440
download(
441
"https://github.com/07th-mod/ui-editing-scripts/releases/latest/download/ui-compiler.exe"
442
)
0 commit comments