added checks for incomplete downloads

This commit is contained in:
Mihit 2025-03-19 11:20:15 +11:00
parent 188b2d7519
commit 153599e6da

View File

@ -1,5 +1,10 @@
#!/bin/bash
rm -r nextcloud.old
if test -f latest.tar.bz2; then
rm latest.tar.bz2 #Removes incomplete or old downloads
fi
if [ -d "nextcloud.old" ]; then
rm -r nextcloud.old #Removes old version of nextcloud
fi
sudo -u www-data php nextcloud/occ maintenance:mode --on
mv nextcloud nextcloud.old
wget https://download.nextcloud.com/server/releases/latest.tar.bz2