18 lines
536 B
Bash
Executable File
18 lines
536 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# this is the quick installer for linux users (blurghh)
|
|
|
|
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?
|
|
|
|
# i mean, at least it makes sure to download the newest
|
|
# installer version? *this* script shouldn't deprecate... |