Update script

This commit is contained in:
Timo Ley 2020-07-29 18:05:27 +02:00
parent 19b2a90b2e
commit 69502e5f7c
1 changed files with 11 additions and 1 deletions

12
mpt
View File

@ -1,5 +1,5 @@
#!/bin/sh
cd "$(dirname "$0")"
cd "$(dirname "$0")" || exit
case $1 in
install)
if ! [ -d "$HOME/.mpt" ];
@ -12,6 +12,16 @@ install)
curl $dl --output $HOME/.mpt/mpt.jar
fi
;;
update)
dl=$(curl https://data.tilera.xyz/file/mpt/mpt-latest)
echo Downloading $dl ...
if [ -f "$HOME/.mpt/mpt.jar" ]
then
curl $dl --output $HOME/.mpt/mpt.jar
else
curl $dl --output .mpt/mpt.jar
fi
;;
*)
if ! [ -d ".mpt" ];
then mkdir .mpt