From a12b7609ca2256ddad3019b641ce264ab487d8e4 Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Tue, 12 May 2020 10:56:20 -0400 Subject: [PATCH] Add a one-shot compile and install script that can be piped to curl from the web. --- install-mts-oneshot.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 install-mts-oneshot.sh diff --git a/install-mts-oneshot.sh b/install-mts-oneshot.sh new file mode 100755 index 0000000..119d135 --- /dev/null +++ b/install-mts-oneshot.sh @@ -0,0 +1,9 @@ +#!/bin/bash +mkdir -p ~/Downloads \ + && cd ~/Downloads \ + && wget -O reset-minetest-install-source.sh https://raw.githubusercontent.com/poikilos/EnlivenMinetest/master/reset-minetest-install-source.sh \ + && chmod +x reset-minetest-install-source.sh \ + && wget -O install-mts https://raw.githubusercontent.com/poikilos/EnlivenMinetest/master/install-mts.sh \ + && chmod +x install-mts.sh \ + && ./reset-minetest-install-source.sh + && ./install-mts.sh