commit: cdc6da9d80f268045574be784c8ca3855ad2d5c0
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 8 05:50:27 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Dec 8 05:53:10 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdc6da9d
dev-python/pyspelling: add missing dies
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-python/pyspelling/pyspelling-2.7.0.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/pyspelling/pyspelling-2.7.0.ebuild
b/dev-python/pyspelling/pyspelling-2.7.0.ebuild
index 97c7dbb77ba..8aea3245861 100644
--- a/dev-python/pyspelling/pyspelling-2.7.0.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.7.0.ebuild
@@ -43,11 +43,11 @@ distutils_enable_tests pytest
python_prepare_all() {
# mkdocs-git-revision-date-localized-plugin needs git repo
if use doc; then
- git init
+ git init || die
git config --global user.email "[email protected]" || die
git config --global user.name "Your Name" || die
- git add .
- git commit -m 'init'
+ git add . || die
+ git commit -m 'init' || die
fi
distutils-r1_python_prepare_all