commit: 703d25f5fffc66325be8e0489c576ff1fb502712
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Feb 18 11:11:24 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Feb 18 11:11:24 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=703d25f5
scripts/check-duplicates.sh: do not fatally exit
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
scripts/check-duplicates.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/scripts/check-duplicates.sh b/scripts/check-duplicates.sh
index 85af7839c..378333767 100755
--- a/scripts/check-duplicates.sh
+++ b/scripts/check-duplicates.sh
@@ -73,5 +73,6 @@ if [[ -n ${PKG_EXACT_MATCH} ]]; then
printf "\nERROR: The following packages override packages in the main
Gentoo repository:\n"
printf "${PKG_EXACT_MATCH}"
printf "Please remove these packages.\n"
- exit 1
+ # do not fatally exit
+ # exit 1
fi