Fixed bug in findcurep.
[utils.git] / autodlctl
index e367a7c..4675ad0 100755 (executable)
--- a/autodlctl
+++ b/autodlctl
@@ -5,18 +5,19 @@ paths=(/home/pub/video/anime $HOME/dc/autodl/cur)
 function findcurep
 {
     if [ -r badlist ]; then
-       echo badlist `head -n 1 curep`
+       echo badlist `head -n 1 badlist`
        return 0
     fi
     if [ -r curep ]; then
        if [ -r maxep ]; then
            if [ "`cat curep`" -le "`cat maxep`" ]; then
                echo curep `cat curep`
+               return 0
            fi
        else
            echo curep `cat curep`
+           return 0
        fi
-       return 0
     fi
     echo none
     return 1