From 4c3d75c89ac1f27b22e45c9f29c6b3c5cf605bb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Tue, 17 Aug 2021 16:42:45 +0200 Subject: [PATCH] scripts/update-recipe-checksums.sh: Fix by ignoring quotes in output MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The have been introduced recently and turned our search and replace to noop Signed-off-by: Andreas Müller --- scripts/update-recipe-checksums.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update-recipe-checksums.sh b/scripts/update-recipe-checksums.sh index 2757f4f..1faf0e1 100755 --- a/scripts/update-recipe-checksums.sh +++ b/scripts/update-recipe-checksums.sh @@ -38,7 +38,7 @@ echo -e "${style_bold}Run bitbake -k --runall=fetch $@...${style_normal}" bitbake -k --runall=fetch "$@" 2>&1 | while read line; do if echo "$line" | grep -q "was expected"; then # Shorten line to ensure not being confused by filenames containing spaces - line=`echo "$line" | sed 's:.*checksum ::'` + line=`echo "$line" | sed 's:.*checksum ::' | sed "s:'::g"` # Extract checksums newchecksum=`echo "$line" | awk '{print $1}'` oldchecksum=`echo "$line" | awk '{print $3}'`