From ea4f167204b444fc52633a2ed1ded9023c3b01e4 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Fri, 10 Jul 2020 09:05:19 +0200 Subject: [PATCH] 9990-misc-helpers.sh: ensure to appened to boot.log file boot.log might exist already, don't overwrite it but instead append output --- components/9990-misc-helpers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/9990-misc-helpers.sh b/components/9990-misc-helpers.sh index c7a82fb..6f84ead 100755 --- a/components/9990-misc-helpers.sh +++ b/components/9990-misc-helpers.sh @@ -761,7 +761,7 @@ try_mount () fstype=$(get_fstype "${dev}") fi mount -t "${fstype}" -o "${opts}" "${dev}" "${mountp}" || \ - ( echo "SKIPPING: Cannot mount ${dev} on ${mountp}, fstype=${fstype}, options=${opts}" > boot.log && return 0 ) + ( echo "SKIPPING: Cannot mount ${dev} on ${mountp}, fstype=${fstype}, options=${opts}" >> boot.log && return 0 ) fi } -- 2.1.4