10 lines
293 B
Bash
10 lines
293 B
Bash
#!/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
|