commit: fee61755046913c5034c046edc2c652f068a50f3
parent ed9f268bc85cb8731261b371caa2d1a318f21214
Author: fosslinux <fosslinux@aussies.space>
Date: Tue, 28 Nov 2023 12:02:19 +1100
Nit: add set -ex to kexec-fiwix
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/sysa/kexec-fiwix/kexec-fiwix.kaem b/sysa/kexec-fiwix/kexec-fiwix.kaem
@@ -1,5 +1,10 @@
+#!/bin/sh
+#
# SPDX-FileCopyrightText: 2023 Richard Masters <grick23@gmail.com>
# SPDX-License-Identifier: MIT
+
+set -ex
+
cd src
tcc -m32 -march=i386 -std=c89 -I../../tcc/tcc-0.9.27/include -o ${bindir}/kexec-fiwix kexec-fiwix.c
cd ..