From b891ef89f3848c10c29c8a6e35a68a3c5212bb62 Mon Sep 17 00:00:00 2001 From: Alexandre Janniaux Date: Fri, 18 Jun 2021 10:17:47 +0200 Subject: [PATCH] buildsystem: libvlc: enable set -e Make the buildscript fail in case of error, instead of continuing in a potentially invalid state. --- buildsystem/compile-libvlc.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildsystem/compile-libvlc.sh b/buildsystem/compile-libvlc.sh index ca2559f75..99f80b32d 100755 --- a/buildsystem/compile-libvlc.sh +++ b/buildsystem/compile-libvlc.sh @@ -1,5 +1,7 @@ #!/bin/sh +set -e + ############# # ARGUMENTS # #############