From 52c32434240f8aecc7586bd04ecf77ccb85d5d4f Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 1 Nov 2016 14:50:32 +0000 Subject: [PATCH] arm64 make-memstick.sh: use 'set -e' to abort if any step fails Also remove the now-redundant error handling that was only for makefs. This script was run on an older FreeBSD host that lacked efi-on-mbr support in makefs. A warning was emitted on the console (from makefs) but the script continued running and exited with 0. Reviewed by: gjb Sponsored by: The FreeBSD Foundation --- release/arm64/make-memstick.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/release/arm64/make-memstick.sh b/release/arm64/make-memstick.sh index d47fad0079e..760f362a0d1 100755 --- a/release/arm64/make-memstick.sh +++ b/release/arm64/make-memstick.sh @@ -10,6 +10,8 @@ # $FreeBSD$ # +set -e + PATH=/bin:/usr/bin:/sbin:/usr/sbin export PATH @@ -31,10 +33,6 @@ fi echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab echo 'root_rw_mount="NO"' > ${1}/etc/rc.conf.local makefs -B little -o label=FreeBSD_Install ${2}.part ${1} -if [ $? -ne 0 ]; then - echo "makefs failed" - exit 1 -fi rm ${1}/etc/fstab rm ${1}/etc/rc.conf.local