Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions overpass-api-httpd/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -e

wget https://dev.overpass-api.de/releases/osm-3s_latest.tar.gz
gunzip <osm-3s_latest.tar.gz | tar x
Expand All @@ -15,7 +16,7 @@ popd

pushd overpass
mkdir -p db
strip bin/*
strip cgi-bin/*
strip bin/* || true
strip cgi-bin/* || true
popd

5 changes: 3 additions & 2 deletions overpass-api-server/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -e

wget https://dev.overpass-api.de/releases/osm-3s_latest.tar.gz
gunzip <osm-3s_latest.tar.gz | tar x
Expand All @@ -15,7 +16,7 @@ popd

pushd overpass
mkdir -p db
strip bin/*
strip cgi-bin/*
strip bin/* || true
strip cgi-bin/* || true
popd