delete old data

This commit is contained in:
rootzoll 2018-11-19 22:08:28 +01:00
parent 8aa5e4e928
commit f5e2efca35

View file

@ -248,7 +248,7 @@ if [ ${torrentError} -gt 0 ]; then
dialog --title " WARNING (${torrentError})" --yesno "The Torrent download failed or is not complete - maybe try FTP download next time. Do you want keep already downloaded torrent data?" 8 57 dialog --title " WARNING (${torrentError})" --yesno "The Torrent download failed or is not complete - maybe try FTP download next time. Do you want keep already downloaded torrent data?" 8 57
response=$? response=$?
case $response in case $response in
1) sudo rm -rf ${targetDir} ;; 1) sudo rm -rf ${targetDir}; sudo rm -rf ${sessionDir} ;;
esac esac
./00mainMenu.sh ./00mainMenu.sh
exit 1; exit 1;