summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2016-08-25 22:15:10 +0200
committerPatrice Clement <monsieurp@gentoo.org>2016-08-25 22:58:05 +0200
commit14ed670c99c3cd4090308157420b3f124a09d71f (patch)
tree9dfc8b46575b9d9a25597f8e42047d1951034781
parentapp-vim/airline: Stable for amd64. Retroactively mark stable for the remainin... (diff)
downloadgentoo-14ed670c.tar.gz
gentoo-14ed670c.tar.bz2
gentoo-14ed670c.zip
app-vim/gnupg: Add missing || dies.
Package-Manager: portage-2.2.28
-rw-r--r--app-vim/gnupg/gnupg-2.6.ebuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/app-vim/gnupg/gnupg-2.6.ebuild b/app-vim/gnupg/gnupg-2.6.ebuild
index 583108037acf..49055cb790d7 100644
--- a/app-vim/gnupg/gnupg-2.6.ebuild
+++ b/app-vim/gnupg/gnupg-2.6.ebuild
@@ -21,9 +21,9 @@ src_prepare() {
# There's good documentation included with the script, but it's not
# in a helpfile. Since there's rather too much information to include
# in a VIM_PLUGIN_HELPTEXT, we'll sed ourselves a help doc.
- mkdir doc
+ mkdir doc || die
sed -e '/" Section: Plugin header.\+$/,9999d' -e 's/^" \?//' \
-e 's/\(Name:\s\+\)\([^.]\+\)\.vim/\1*\2.txt*/' \
plugin/${PN}.vim \
- > doc/${PN}.txt
+ > doc/${PN}.txt || die
}