diff options
author | Joonas Niilola <juippis@gentoo.org> | 2020-12-08 07:50:27 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-12-08 07:53:10 +0200 |
commit | cdc6da9d80f268045574be784c8ca3855ad2d5c0 (patch) | |
tree | a30ee99ad3d6858cad7799325f10426430110d04 /dev-python/pyspelling | |
parent | dev-python/pymdown-extensions: add missing dies (diff) | |
download | gentoo-cdc6da9d80f268045574be784c8ca3855ad2d5c0.tar.gz gentoo-cdc6da9d80f268045574be784c8ca3855ad2d5c0.tar.bz2 gentoo-cdc6da9d80f268045574be784c8ca3855ad2d5c0.zip |
dev-python/pyspelling: add missing dies
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-python/pyspelling')
-rw-r--r-- | dev-python/pyspelling/pyspelling-2.7.0.ebuild | 6 |
1 files 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 97c7dbb77baa..8aea32458614 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 "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 |