Browse Source

not -d ! -n !

pull/709/head
lrob 9 years ago
parent
commit
9733ab6fcb
  1. 2
      functions/command_fastdl.sh

2
functions/command_fastdl.sh

@ -90,7 +90,7 @@ fn_scriptlog "Configuration"
sleep 2
echo -en "\n"
# Prompt for clearing old files if folder was already here
if [ -d "${newfastdl}" ] && [ "${newfastdl}" == "0" ]; then
if [ -n "${newfastdl}" ] && [ "${newfastdl}" == "0" ]; then
fn_printdots
while true; do
read -e -i "y" -p "Clear old FastDL files? [Y/n]" yn

Loading…
Cancel
Save