2025-05-31 11:12:28 -05:00

17 lines
513 B
Bash
Executable File

#!/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.
echo "[INFO]: Installer Quick Script for Linux"
echo "[INFO]: Installer Version: 0.1.4"
echo "[INFO]: Welcome!"
wget https://git.sarushinobie.dev/saru/family-minecraft-modpack/releases/download/0.1.4/installer
chmod +x ./installer
./installer
rm installer
# just realized you have to chmod +x the "quick install"
# script too, is there a point even?