From db0d0689ab21a8e866d466feba00d4ac90547842 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 8 Dec 2022 15:08:13 +0000 Subject: [PATCH] find-requires: Fix matching Python paths Signed-off-by: Michael Tremer --- src/scripts/find-requires | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/find-requires b/src/scripts/find-requires index 7ca431622..6754e6fcd 100644 --- a/src/scripts/find-requires +++ b/src/scripts/find-requires @@ -200,7 +200,7 @@ main() { ;; # Catch the module directory - /usr/lib*/python*) + /usr/lib*/python[0-9]\.[0-9]*) # This will only get the python directory file="$(basename "${file}")" -- 2.39.5