diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2016-08-25 22:15:10 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-08-25 22:58:05 +0200 |
commit | 14ed670c99c3cd4090308157420b3f124a09d71f (patch) | |
tree | 9dfc8b46575b9d9a25597f8e42047d1951034781 /app-vim/gnupg | |
parent | app-vim/airline: Stable for amd64. Retroactively mark stable for the remainin... (diff) | |
download | gentoo-14ed670c99c3cd4090308157420b3f124a09d71f.tar.gz gentoo-14ed670c99c3cd4090308157420b3f124a09d71f.tar.bz2 gentoo-14ed670c99c3cd4090308157420b3f124a09d71f.zip |
app-vim/gnupg: Add missing || dies.
Package-Manager: portage-2.2.28
Diffstat (limited to 'app-vim/gnupg')
-rw-r--r-- | app-vim/gnupg/gnupg-2.6.ebuild | 4 |
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 } |