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!")