commit 53feb1c137831ae026b3d2d7b05aad673b94d473
parent 4bd447c28eb09db1db0a32b4c9fc9291e9abae55
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 10 Oct 2023 16:33:26 +0200
Explicitly enable the -e option in the make.sh script
It was previously defined in the shebang but was actually ignore.
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/make.sh b/make.sh
@@ -1,4 +1,4 @@
-#!/bin/sh -e
+#!/bin/sh
# Copyright (C) 2016-2018, 2021-2023 |Méso|Star> (contact@meso-star.com)
#
@@ -15,6 +15,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+set -e
+
################################################################################
# Helper functions
################################################################################