diff options
author | Joonas Niilola <juippis@gentoo.org> | 2020-12-08 07:50:55 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-12-08 07:53:10 +0200 |
commit | e14d3c85a8ff068849f209b25351af96f995df79 (patch) | |
tree | c8a551ea405a92d49b47bffd223a65b170932e6d /dev-python/wcmatch | |
parent | dev-python/pyspelling: add missing dies (diff) | |
download | gentoo-e14d3c85a8ff068849f209b25351af96f995df79.tar.gz gentoo-e14d3c85a8ff068849f209b25351af96f995df79.tar.bz2 gentoo-e14d3c85a8ff068849f209b25351af96f995df79.zip |
dev-python/wcmatch: add missing dies
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-python/wcmatch')
-rw-r--r-- | dev-python/wcmatch/wcmatch-7.1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-python/wcmatch/wcmatch-7.1.ebuild b/dev-python/wcmatch/wcmatch-7.1.ebuild index 2b77ed17b042..4fc94a4a4728 100644 --- a/dev-python/wcmatch/wcmatch-7.1.ebuild +++ b/dev-python/wcmatch/wcmatch-7.1.ebuild @@ -45,11 +45,11 @@ 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 |