From 6f5b2f6142ecc50c51f8b4ebe5016fc8d5d93017 Mon Sep 17 00:00:00 2001 From: Derek Witcpalek Date: Tue, 7 Apr 2020 22:39:33 -0400 Subject: [PATCH] Fixed build script to only continue if it was successful --- rrrobot_src/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rrrobot_src/build.sh b/rrrobot_src/build.sh index 4145f11..6b4669d 100755 --- a/rrrobot_src/build.sh +++ b/rrrobot_src/build.sh @@ -1,7 +1,7 @@ #!/bin/bash -catkin_make clean -catkin_make -catkin_make install +catkin_make clean && +catkin_make && +catkin_make install && source devel/setup.bash