commit: 3febea914acb9eb5f036b2313916f20b6cd6d1a7
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Mon Jul 1 01:26:53 2024 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Mon Jul 1 01:26:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3febea91
nimble.eclass: fix tests dry-run
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
eclass/nimble.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/nimble.eclass b/eclass/nimble.eclass
index 2fa48b48f..affe3cb58 100644
--- a/eclass/nimble.eclass
+++ b/eclass/nimble.eclass
@@ -178,7 +178,7 @@ nimble_src_compile() {
nimble_src_test() {
debug-print-function ${FUNCNAME} "${@}"
- if nonfatal nimble_build test -n &> /dev/null; then
+ if nonfatal nimble_build -n test &> /dev/null; then
nimble_build test "${@}"
fi
}