From addb978364b9a6525addc756ce53d07dcae93f8e Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Wed, 15 Sep 2021 20:27:55 +0200 Subject: [PATCH] setup: Let's not ignore errors Otherwise the script finishes and you don't know if it worked. --- Tools/setup/ubuntu.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tools/setup/ubuntu.sh b/Tools/setup/ubuntu.sh index ffeb1d0e21..2183ab02d4 100755 --- a/Tools/setup/ubuntu.sh +++ b/Tools/setup/ubuntu.sh @@ -1,5 +1,7 @@ #! /usr/bin/env bash +set -e + ## Bash script to setup PX4 development environment on Ubuntu LTS (20.04, 18.04, 16.04). ## Can also be used in docker. ##