From 9423d7f8443e8c02ac25e15280dbeb6305c306c3 Mon Sep 17 00:00:00 2001 From: Chris Hofstaedtler Date: Tue, 26 Nov 2024 14:41:02 +0100 Subject: [PATCH] shellcheck: grml-live: turn off two info messages --- grml-live | 2 ++ 1 file changed, 2 insertions(+) diff --git a/grml-live b/grml-live index 4852f70e..701169cc 100755 --- a/grml-live +++ b/grml-live @@ -877,6 +877,7 @@ else EOF + # shellcheck disable=SC2013 # We expect each line to be a single word. for package in $(awk '{print $1}' "${CHECKLOG}/package_errors.log" | sed 's;/;\\/;') ; do failure_reason="$(awk "/$package/ {print \$2}" "${CHECKLOG}/package_errors.log")" cat >> "${REPORT_MISSING_PACKAGES}" << EOF @@ -1519,6 +1520,7 @@ fi # create md5sum file: if [ -z "$BOOTSTRAP_ONLY" ] ; then + # shellcheck disable=SC2094 # find execution ignores written file ( cd "$BUILD_OUTPUT"/GRML/"${GRML_NAME}" && find ../.. -type f -not -name md5sums -not -name isolinux.bin -exec md5sum {} \; > md5sums ) fi