From ce5d51c2dec924733e50d3dee91670ad1b21ff23 Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Wed, 24 Jun 2020 07:39:00 +0200 Subject: [PATCH] Another small shellcheck issue Signed-off-by: Igor Pecovnik --- lib/compilation.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/compilation.sh b/lib/compilation.sh index 464151ba1a..5a2204fafd 100644 --- a/lib/compilation.sh +++ b/lib/compilation.sh @@ -439,9 +439,9 @@ compile_kernel() echo $hash > ${SRC}/cache/hash/linux-image-${BRANCH}-${LINUXFAMILY}.githash [[ -z ${KERNELPATCHDIR} ]] && KERNELPATCHDIR=$LINUXFAMILY-$BRANCH [[ -z ${LINUXCONFIG} ]] && LINUXCONFIG=linux-$LINUXFAMILY-$BRANCH - hash_watch_1=$(find "${SRC}/patch/kernel/${KERNELPATCHDIR}" -maxdepth 1 -printf '%s %P\n') - hash_watch_2=$(cat "${SRC}/config/kernel/${LINUXCONFIG}.config") - echo ${hash_watch_1}${hash_watch_2} | git hash-object --stdin >> "${SRC}/cache/hash/linux-image-${BRANCH}-${LINUXFAMILY}.githash" + hash_watch_1=$(find "${SRC}/patch/kernel/${KERNELPATCHDIR}" -maxdepth 1 -printf '%s %P\n') + hash_watch_2=$(cat "${SRC}/config/kernel/${LINUXCONFIG}.config") + echo "${hash_watch_1}${hash_watch_2}" | git hash-object --stdin >> "${SRC}/cache/hash/linux-image-${BRANCH}-${LINUXFAMILY}.githash" }