mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 13:53:15 -07:00
Change cleanup list to string
This commit is contained in:
parent
7860bc940d
commit
90418660af
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ fi
|
|||
echo "[INFO] Post-Process: Cleaning up"
|
||||
chmod -R a+rw .
|
||||
# Clean up list, space seperated array from GUI
|
||||
for item in ${FileCleanUp[*]} ; do rm $item >/dev/null 2>&1 ; done
|
||||
for word in $FileCleanUp ; do rm $word >/dev/null 2>&1 ; done
|
||||
# Removed by default
|
||||
rm _brokenlog.txt >/dev/null 2>&1
|
||||
if [ "$Unrared" -eq 1 ]; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue