diff options
-rwxr-xr-x | debian/autobake-deb.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/debian/autobake-deb.sh b/debian/autobake-deb.sh index 68a8ce34283..caef33b2b7d 100755 --- a/debian/autobake-deb.sh +++ b/debian/autobake-deb.sh @@ -201,7 +201,11 @@ then for package in *.deb do echo "$package" | cut -d '_' -f 1 - dpkg-deb -c "$package" | awk '{print $1 " " $2 " " $6 " " $7 " " $8}' | sort -k 3 + # shellcheck disable=SC2034 + dpkg-deb -c "$package" | while IFS=" " read -r col1 col2 col3 col4 col5 col6 col7 col8 + do + echo "$col1 $col2 $col6 $col7 $col8" | sort -k 3 + done echo "------------------------------------------------" done fi |