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