Rewrite command sequence 'command1 && command2' as 'command1; command2' for the command2 not to try to execute after command1 fail

This commit is contained in:
Alexey Zakharenkov 2019-07-24 14:00:56 +03:00
parent 4731c0a21c
commit 566675d15b

View file

@ -58,7 +58,8 @@ if [ -n "${GIT_PULL-}" ]; then (
PLANET_ABS="$(cd "$(dirname "$PLANET")"; pwd)/$(basename "$PLANET")"
(
cd "$OSMCTOOLS" # osmupdate requires osmconvert in a current directory
./osmupdate --drop-author --out-o5m "$PLANET_ABS" ${BBOX+"-b=$BBOX"} "$PLANET_ABS.new.o5m" && mv "$PLANET_ABS.new.o5m" "$PLANET_ABS"
./osmupdate --drop-author --out-o5m "$PLANET_ABS" ${BBOX+"-b=$BBOX"} "$PLANET_ABS.new.o5m"
mv "$PLANET_ABS.new.o5m" "$PLANET_ABS"
)
# Filtering it