Improve script warnings/errors (#32)
- Warn on unexpected file extensions - Move filename to end of errors Signed-off-by: Evan Lloyd New-Schmidt <evan@new-schmidt.com>
This commit is contained in:
parent
29d90376f3
commit
9d1ad01f33
2 changed files with 11 additions and 4 deletions
|
@ -79,7 +79,7 @@ if [ -n "${1:-}" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d "$DUMP_DIR" ]; then
|
if [ ! -d "$DUMP_DIR" ]; then
|
||||||
echo "DUMP_DIR '$DUMP_DIR' does not exist" >&2
|
echo "DUMP_DIR does not exist: '$DUMP_DIR'" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
13
run.sh
13
run.sh
|
@ -53,24 +53,31 @@ fi
|
||||||
BUILD_DIR=$(readlink -f -- "$1")
|
BUILD_DIR=$(readlink -f -- "$1")
|
||||||
shift
|
shift
|
||||||
if [ ! -d "$BUILD_DIR" ]; then
|
if [ ! -d "$BUILD_DIR" ]; then
|
||||||
echo "BUILD_DIR '$BUILD_DIR' does not exist or is not a directory" >&2
|
echo "BUILD_DIR does not exist or is not a directory: '$BUILD_DIR'" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
OSM_FILE=$(readlink -f -- "$1")
|
OSM_FILE=$(readlink -f -- "$1")
|
||||||
shift
|
shift
|
||||||
if [ ! -f "$OSM_FILE" ]; then
|
if [ ! -f "$OSM_FILE" ]; then
|
||||||
echo "OSM_FILE '$OSM_FILE' does not exist or is not a file" >&2
|
echo "OSM_FILE does not exist or is not a file: '$OSM_FILE'" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "${OSM_FILE: -4}" != ".pbf" ]; then
|
||||||
|
echo "WARN: OSM_FILE does not end in .pbf: '$OSM_FILE'" >&2
|
||||||
|
fi
|
||||||
|
|
||||||
DUMP_FILES=()
|
DUMP_FILES=()
|
||||||
while (( $# > 0 )); do
|
while (( $# > 0 )); do
|
||||||
dump_file="$(readlink -f -- "$1")"
|
dump_file="$(readlink -f -- "$1")"
|
||||||
if [ ! -f "$dump_file" ]; then
|
if [ ! -f "$dump_file" ]; then
|
||||||
echo "DUMP_FILE '$dump_file' does not exist or is not a file" >&2
|
echo "DUMP_FILE does not exist or is not a file: '$dump_file'" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
if [ "${dump_file: -12}" != ".json.tar.gz" ]; then
|
||||||
|
echo "WARN: DUMP_FILE does not end in .json.tar.gz: '$dump_file'" >&2
|
||||||
|
fi
|
||||||
DUMP_FILES+=("$dump_file")
|
DUMP_FILES+=("$dump_file")
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Reference in a new issue