From 286289f67162739271e11c2eea0d890c22d72238 Mon Sep 17 00:00:00 2001 From: totaam Date: Tue, 28 Mar 2023 16:40:54 +0700 Subject: [PATCH] #3807 don't rebuild just to get a '.src' rpm it may already exist anyway, just not found by the repoquery --- build_rpms.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build_rpms.sh b/build_rpms.sh index e57787c..fc5066e 100755 --- a/build_rpms.sh +++ b/build_rpms.sh @@ -81,6 +81,8 @@ while read p; do echo " (ignored debugsource)" elif [[ $dep == *-doc-* ]]; then echo " (ignored doc)" + elif [[ $dep == *.src ]]; then + echo " (ignored src)" else MISSING="${MISSING} ${dep}" fi