From 23d851481becf8443a1c75071b0c846b3c0655bb Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Tue, 7 Jul 2015 13:07:56 +0300 Subject: [PATCH] [generator] Redirect osmupdate output to planet log --- tools/unix/generate_planet.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/unix/generate_planet.sh b/tools/unix/generate_planet.sh index 0d3e574dea..ecc7a8cef1 100755 --- a/tools/unix/generate_planet.sh +++ b/tools/unix/generate_planet.sh @@ -224,7 +224,7 @@ if [ "$MODE" == "coast" ]; then PLANET_ABS="$(cd "$(dirname "$PLANET")"; pwd)/$(basename "$PLANET")" ( cd "$OSMCTOOLS" # osmupdate requires osmconvert in a current directory - ./osmupdate --drop-author --drop-version --out-o5m -v "$PLANET_ABS" "$PLANET_ABS.new.o5m" + ./osmupdate --drop-author --drop-version --out-o5m -v "$PLANET_ABS" "$PLANET_ABS.new.o5m" >> "$PLANET_LOG" 2>&1 ) mv "$PLANET.new.o5m" "$PLANET" fi