From ee34237b87e94a36f23ed95b678732b48a8b7e81 Mon Sep 17 00:00:00 2001
From: Martin Larralde <martin.larralde@embl.de>
Date: Fri, 22 Jul 2022 13:27:54 +0200
Subject: [PATCH] Fix `check` step of `PKGBUILD` [ci skip]

---
 pkg/aur/PKGBUILD.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/aur/PKGBUILD.in b/pkg/aur/PKGBUILD.in
index b5888fd..d0f867a 100644
--- a/pkg/aur/PKGBUILD.in
+++ b/pkg/aur/PKGBUILD.in
@@ -23,7 +23,7 @@ build() {
 check() {
     local pyver=$(python -c 'import sys; print("{}.{}".format(*sys.version_info[:2]))')
     local machine=$(python -c 'import platform; print(platform.machine())')
-    cd "${srcdir}/${_name}-${pkgver}/build/lib.linux-${machine}-${pyver}"
+    cd "${srcdir}/${_name}-${pkgver}/build/lib.linux-${machine}"-*
     python -m unittest ${_name}.tests
 }
 
-- 
GitLab