diff options
author | Sam James <sam@gentoo.org> | 2021-04-12 03:24:47 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-16 12:17:07 +0100 |
commit | 28eff152d8f4d440c4256317b625e08cc6a9bc66 (patch) | |
tree | a0e90477b30197a5194885e18b730fca1def65bd /dev-util/buildbot/buildbot-2.8.2-r1.ebuild | |
parent | dev-util/babeltrace: eutils-- (diff) | |
download | gentoo-28eff152d8f4d440c4256317b625e08cc6a9bc66.tar.gz gentoo-28eff152d8f4d440c4256317b625e08cc6a9bc66.tar.bz2 gentoo-28eff152d8f4d440c4256317b625e08cc6a9bc66.zip |
dev-util/buildbot: drop superfluous dies
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-util/buildbot/buildbot-2.8.2-r1.ebuild')
-rw-r--r-- | dev-util/buildbot/buildbot-2.8.2-r1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-util/buildbot/buildbot-2.8.2-r1.ebuild b/dev-util/buildbot/buildbot-2.8.2-r1.ebuild index 293a54f89f28..b0700a3d10e5 100644 --- a/dev-util/buildbot/buildbot-2.8.2-r1.ebuild +++ b/dev-util/buildbot/buildbot-2.8.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -98,10 +98,10 @@ src_compile() { if use doc; then einfo "Generation of documentation" - pushd docs > /dev/null + pushd docs > /dev/null || die #'man' target is currently broken emake html - popd > /dev/null + popd > /dev/null || die fi } |