diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..a24345a --- /dev/null +++ b/install.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# this is the quick installer for linux users (blurghh) +# all we need it to do is download the installer.py, make +# it executable, then execute it. + +wget https://git.sarushinobie.dev/saru/family-minecraft-modpack/releases/download/0.1.4/installer +chmod +x ./installer +./installer diff --git a/installer.py b/installer.py index 7fb1c4c..d87b53f 100644 --- a/installer.py +++ b/installer.py @@ -133,7 +133,7 @@ def check_for_launcher_files(filepath, launchername): # --------------------the real shit!------------------------ -print("[INFO]: Welcome! Installer Version: 0.1.3") +print("[INFO]: Welcome! Installer Version: 0.1.4") #detect operating system and find home, minecraft, & mod folders homedir = os.path.expanduser("~") @@ -211,7 +211,7 @@ os.environ['SSL_CERT_FILE'] = certifi.where() # this line fixes SSL errors after compiling with PyInstaller as long as certifi is imported alongside it try: - wget.download('https://git.sarushinobie.dev/saru/family-minecraft-modpack/releases/download/0.1.3/mods.tar.gz') + wget.download('https://git.sarushinobie.dev/saru/family-minecraft-modpack/releases/download/0.1.4/mods.tar.gz') # this is insane. `wget` the fucking goat. who knew windows package manager was so cool? except: print(); print("[ERR!] Fatal: Download failed! (Is Adolin online?)"); print()