From 82cac6f6ade3bdd6d886ff0534f4f89e4705f43a Mon Sep 17 00:00:00 2001 From: Ruslan Mstoi Date: Tue, 30 Jan 2024 17:56:38 +0200 Subject: [PATCH] scripts: check-image-compatibility.sh: fix variable name typo Fix liness to lines Signed-off-by: Ruslan Mstoi --- scripts/check-image-compatibility.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check-image-compatibility.sh b/scripts/check-image-compatibility.sh index 16c84d40f..6595a7225 100644 --- a/scripts/check-image-compatibility.sh +++ b/scripts/check-image-compatibility.sh @@ -116,7 +116,7 @@ out=`fdisk -l ${dest_file} --bytes | grep -i -A ${nr_partitions} 'Device' | tai IFS=' ' i=0 -declare -A liness +declare -A lines for x in $out ; do lines[$i]=$x i=$((i+1))