From 7b6b01af02b9c2fa990aa5d4b9d683039b9731bc Mon Sep 17 00:00:00 2001 From: Matt Hansen <12618239+mkhansenbot@users.noreply.github.com> Date: Mon, 14 Aug 2023 22:54:51 +0000 Subject: [PATCH 1/3] Add pipefail to build.sh to ensure script fails if build fails --- space_robots/build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/space_robots/build.sh b/space_robots/build.sh index e0aff77..94770d8 100755 --- a/space_robots/build.sh +++ b/space_robots/build.sh @@ -7,6 +7,9 @@ TAG=latest VCS_REF="" VERSION=preview +# Exit script with failure if build fails +set -eo pipefail + echo "" echo "##### Building Space ROS Demo Docker Image #####" echo "" From db45522aebcbd85ffc221613178ca6f1aaa6ec6c Mon Sep 17 00:00:00 2001 From: Matt Hansen <12618239+mkhansenbot@users.noreply.github.com> Date: Tue, 15 Aug 2023 00:30:54 +0000 Subject: [PATCH 2/3] Add pipefail to build.sh to ensure script fails if build fails --- moveit2/build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/moveit2/build.sh b/moveit2/build.sh index 7c30cd1..04cc00d 100755 --- a/moveit2/build.sh +++ b/moveit2/build.sh @@ -7,6 +7,9 @@ TAG=latest VCS_REF="" VERSION=preview +# Exit script with failure if build fails +set -eo pipefail + echo "" echo "##### Building Space ROS/MoveIt2 Docker Image #####" echo "" From fca11abf4639d05095b0d7e9fcab055896db588e Mon Sep 17 00:00:00 2001 From: Matt Hansen <12618239+mkhansenbot@users.noreply.github.com> Date: Tue, 15 Aug 2023 00:31:14 +0000 Subject: [PATCH 3/3] Add pipefail to build.sh to ensure script fails if build fails --- spaceros/build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spaceros/build.sh b/spaceros/build.sh index 0e46145..fa877b1 100755 --- a/spaceros/build.sh +++ b/spaceros/build.sh @@ -3,6 +3,9 @@ VCS_REF="$(git rev-parse HEAD)" VERSION=preview +# Exit script with failure if build fails +set -eo pipefail + echo "" echo "##### Building Space ROS Docker Image #####" echo ""