commit: 5baf0448b9b057378db6acb36209611da9455a96
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 8 05:48:43 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Dec 8 05:53:09 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5baf0448
dev-python/bracex: add missing dies
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-python/bracex/bracex-2.0.1.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/bracex/bracex-2.0.1.ebuild
b/dev-python/bracex/bracex-2.0.1.ebuild
index 938c2fc2c53..3219582fd35 100644
--- a/dev-python/bracex/bracex-2.0.1.ebuild
+++ b/dev-python/bracex/bracex-2.0.1.ebuild
@@ -34,11 +34,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