From fee61755046913c5034c046edc2c652f068a50f3 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Tue, 28 Nov 2023 12:02:19 +1100 Subject: [PATCH] Nit: add set -ex to kexec-fiwix --- sysa/kexec-fiwix/kexec-fiwix.kaem | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sysa/kexec-fiwix/kexec-fiwix.kaem b/sysa/kexec-fiwix/kexec-fiwix.kaem index 40be767..0e3523c 100755 --- 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 # 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 ..