#!/usr/bin/env sh set -eu if [ "${1:-}" = "" ]; then echo "Usage: $0 path/to/osm.pbf" >&2 exit 2 fi echo "Building import via osm2pgsql will be implemented in the PostGIS stage." >&2 echo "Input file: $1" >&2 exit 1