You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
30 lines
1.2 KiB
#!/bin/sh
|
|
cd $HOME
|
|
if [ -d "$HOME/minetest-stuff/minetest-chunkymap" ]; then
|
|
rm -Rf $HOME/minetest-stuff/minetest-chunkymap
|
|
fi
|
|
CHUNKYMAP_INSTALLER_DIR=$HOME/Downloads/minetest-chunkymap
|
|
CHUNKYMAP_DEST=$HOME/chunkymap
|
|
if [ ! -d "$HOME/Downloads" ]; then
|
|
mkdir "$HOME/Downloads"
|
|
fi
|
|
|
|
#cd $CHUNKYMAP_INSTALLER_DIR
|
|
#chmod +x update-chunkymap-installer-only.sh
|
|
#cd $CHUNKYMAP_DEST
|
|
#if [ -f "update-chunkymap-installer-only.sh" ]; then
|
|
# move misplaced file from older versions:
|
|
#mv -f update-chunkymap-installer-only.sh "$CHUNKYMAP_INSTALLER_DIR/update-chunkymap-installer-only.sh"
|
|
#fi
|
|
#sh "$CHUNKYMAP_INSTALLER_DIR/update-chunkymap-installer-only.sh"
|
|
if [ -f "$CHUNKYMAP_DEST/update-chunkymap-installer-only.sh" ]; then
|
|
sh "$CHUNKYMAP_DEST/update-chunkymap-installer-only.sh"
|
|
#further instructions are in separate file in case updater was updated (sleep first otherwise file won't be finished writing):
|
|
sleep .25
|
|
sh "$CHUNKYMAP_DEST/post-update.sh"
|
|
else
|
|
sh "$CHUNKYMAP_INSTALLER_DIR/update-chunkymap-installer-only.sh"
|
|
#further instructions are in separate file in case updater was updated (sleep first otherwise file won't be finished writing):
|
|
sleep .25
|
|
sh "$CHUNKYMAP_INSTALLER_DIR/post-update.sh"
|
|
fi
|
|
|