From 6380bba4d328e922a7ecea586f396a6fc4750cb7 Mon Sep 17 00:00:00 2001 From: Obie Hinojosa Date: Wed, 28 May 2025 16:37:42 -0500 Subject: [PATCH] fix comments --- installer.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/installer.py b/installer.py index 1acee15..549f079 100644 --- a/installer.py +++ b/installer.py @@ -159,27 +159,25 @@ os.chdir(mcfolder) time.sleep(2) # unclear if this timeout is necessary for UX -#clear out preexisting mods +# clear out preexisting mods check_for_old_mod_archive("mods.tar.gz") delete_directory("mods") - #custom function* print("Deleting mod folder contents... Done.") - #shut up again + #shut up os.mkdir(str("mods")) -# download mod archive from https://git.adolin.xyz/saru and extract +# download mod archive from git repo and extract print("Fetching mods...") wget.download('') - # #this is the SIMPLEST implementation of curl i have ever seen i just NUTTED SO HARD - # take the last one back, this is fucking insane. `wget` the fucking goat. who knew windows package manager was so cool? + # this is insane. `wget` the fucking goat. who knew windows package manager was so cool? extract_tar_archive('mods.tar.gz', 'mods') # ('tarfile', 'directory to extract to') ascii_art() - #print boykisser to console + # print boykisser to console print("sigma!") print("all done!")