correct installer version to match prospective release

This commit is contained in:
Obie Hinojosa 2025-05-31 11:05:05 -05:00
parent b69f7074a0
commit ea21bcd2a2
2 changed files with 11 additions and 2 deletions

9
install.sh Normal file
View File

@ -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

View File

@ -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()