image_builder: fix bug w scope of variable

This commit is contained in:
Artem Smirnov
2018-09-24 20:18:48 +03:00
parent fa817d9f80
commit 595e67a928
2 changed files with 3 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ resolve_rosdep() {
for i in {1..5}; do
# Resolving Dependencies with rosdep
rosdep install -y --from-paths src --ignore-src --rosdistro ${ROS_DISTRO} -r --os=${OS_DISTRO}:${OS_VERSION} \
&& (install_ok=true; break) || (echo_stamp "rosdep iteration #$i failed!" "ERROR"; sleep 2)
&& install_ok=true && break || (echo_stamp "rosdep iteration #$i failed!" "ERROR"; sleep 2)
done
set -e
# Stage fail if this condition is not true