Merge pull request #7895 from Zverik/fix_gen

[generator] Fix unbound OSC error
This commit is contained in:
Slava 2017-12-27 19:25:47 +03:00 committed by GitHub
commit 46c2aeda7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -359,7 +359,7 @@ if [ "$MODE" == "coast" ]; then
if [ -n "$OPT_UPDATE" ]; then
log "STATUS" "Step 1: Updating the planet file $PLANET"
PLANET_ABS="$(cd "$(dirname "$PLANET")"; pwd)/$(basename "$PLANET")"
OSC_ABS="$(cd "$(dirname "$OSC")"; pwd)/$(basename "$OSC")"
[ -n "${OSC-}" ] && OSC_ABS="$(cd "$(dirname "${OSC-}")"; pwd)/$(basename "${OSC-}")"
(
cd "$OSMCTOOLS" # osmupdate requires osmconvert in a current directory
./osmupdate --drop-author --drop-version --out-o5m -v "$PLANET_ABS" "$PLANET_ABS.new.o5m"