From 0455d7cc1722fae97ce18708915780e5bfd0bdb4 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Mon, 24 Aug 2020 10:27:48 +0200 Subject: [PATCH] scripts/convert_to_utf8: handle things from the "root" directory It's a pain to run this in each queue directory, so just handle things from the root of the tree instead. Signed-off-by: Greg Kroah-Hartman --- scripts/convert_to_utf8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/convert_to_utf8 b/scripts/convert_to_utf8 index 03b1a9547c2..7a548d761da 100755 --- a/scripts/convert_to_utf8 +++ b/scripts/convert_to_utf8 @@ -1,6 +1,6 @@ #!/bin/bash -for file in $(ls *.patch); do +for file in $(find queue-* -type f | grep patch); do ISO=$(file "${file}" | grep ISO) if [ "${ISO}" != "" ] ; then echo "Converting ${file}" -- 2.47.2