dev-python/pyspelling: add missing dies

Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Joonas Niilola
2020-12-08 07:50:27 +02:00
parent 3e76cbb58d
commit cdc6da9d80

View File

@@ -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 "you@example.com" || 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