Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorIlya Zverev <zverik@textual.ru>2015-07-07 13:07:56 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:54:40 +0300
commit23d851481becf8443a1c75071b0c846b3c0655bb (patch)
treea11bc129363d3ab5fd3308fa56d00313b502e400 /tools
parente99003a0d698e45470a620b52dc39f0f55b78005 (diff)
[generator] Redirect osmupdate output to planet log
Diffstat (limited to 'tools')
-rwxr-xr-xtools/unix/generate_planet.sh2
1 files changed, 1 insertions, 1 deletions
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