wget parameter to resume downloads

This commit is contained in:
Luis Bosque 2016-02-18 14:05:20 +01:00
parent 3fbb60e9e7
commit f34d9db925

View File

@ -21,5 +21,5 @@ mkdir -p $TARGET_DIR
for file in $DUMP_LIST; do
url="${BASE_URL}/${VERSION}/$file"
wget --directory-prefix=$TARGET_DIR $url
wget -c --directory-prefix=$TARGET_DIR $url
done