Skip to content

Commit

Permalink
Merge pull request #76 from mkhansenbot/add_pipefail
Browse files Browse the repository at this point in the history
Add pipefail to space_robots build so that it fails on error
  • Loading branch information
EzraBrooks authored Aug 17, 2023
2 parents 8ebdb35 + fca11ab commit c60ab97
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions moveit2/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
Expand Down
3 changes: 3 additions & 0 deletions space_robots/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
Expand Down
3 changes: 3 additions & 0 deletions spaceros/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
Expand Down

0 comments on commit c60ab97

Please sign in to comment.