Rewrite command sequence 'command1 && command2' as 'command1; command2' for the command2 not to try to execute after command1 fail
This commit is contained in:
parent
4731c0a21c
commit
566675d15b
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue