Skip to content

Commit

Permalink
Merge pull request #336 from Stefanic/continue-download
Browse files Browse the repository at this point in the history
Continue download of PBF file
  • Loading branch information
leonardehrenfried authored Jun 28, 2022
2 parents 2311e7b + 127c73a commit 7a77549
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 3.7/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fi;

if [ "$PBF_URL" != "" ]; then
echo Downloading OSM extract from "$PBF_URL"
curl -L "$PBF_URL" --create-dirs -o $OSMFILE
curl -L "$PBF_URL" -C - --create-dirs -o $OSMFILE
fi

if [ "$PBF_PATH" != "" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 4.0/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fi

if [ "$PBF_URL" != "" ]; then
echo Downloading OSM extract from "$PBF_URL"
curl -L "$PBF_URL" --create-dirs -o $OSMFILE
curl -L "$PBF_URL" -C - --create-dirs -o $OSMFILE
fi

if [ "$PBF_PATH" != "" ]; then
Expand Down

0 comments on commit 7a77549

Please sign in to comment.