diff options
| -rw-r--r-- | lib/httracker/functions | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/httracker/functions b/lib/httracker/functions index 6d83b08..659553a 100644 --- a/lib/httracker/functions +++ b/lib/httracker/functions @@ -27,7 +27,7 @@ function httracker_get {    mkdir -p $TARGET    # We already got this one -  if [ -f "$TARGET/ok" ]; then +  if [ -f "$TARGET/httracker-ok" ]; then      return    fi @@ -49,7 +49,7 @@ function httracker_get {    if [ "$?" == "0" ]; then      # Mark as downloaded -    touch $TARGET/ok +    touch $TARGET/httracker-ok    else      echo "Error fetching $url."      rm -rf $TARGET | 
