Merge pull request #317 from skevas/fix-typo

Fixes typo in update.sh
This commit is contained in:
Bernd Bestel
2019-07-14 15:16:22 +02:00
committed by GitHub

View File

@@ -10,15 +10,15 @@ shopt -s extglob
pushd `dirname $0` > /dev/null
backupBundleFileName="backup-`date +%d-%m-%Y-%H-%M-%S`.tgz"
echo Making a backup of the current installation in /data/backups/$backupBundleFileName
echo Making a backup of the current installation in ./data/backups/$backupBundleFileName
mkdir -p ./data/backups > /dev/null
tar -zcvf ./data/backups/$backupBundleFileName --exclude ./data/backups . > /dev/null
find ./data/backups/*.tgz -mtime +60 -type f -delete
echo Deleting everything except /data and this script
echo Deleting everything except ./data and this script
rm -rf !(data|update.sh) > /dev/null
echo Emptying /data/viewcache
echo Emptying ./data/viewcache
rm -rf ./data/viewcache/* > /dev/null
echo Downloading latest release