Merge pull request #211 from CartoDB/resumen_downloads

wget parameter to resume downloads
This commit is contained in:
Carla
2016-02-18 14:19:51 +01:00

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