dev-lang/nim: added missing '|| die' in rm call

Noticed by Soap__.

Package-Manager: portage-2.3.2
This commit is contained in:
Sergei Trofimovich
2016-10-24 22:32:42 +01:00
parent c193a16543
commit db25119bb6
3 changed files with 3 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ src_test() {
src_install() {
./koch install "${D}/usr" || die "koch install failed"
rm -r "${D}/usr/nim/doc"
rm -r "${D}/usr/nim/doc" || die "failed to remove 'doc'"
dodir /usr/bin
dosym ../nim/bin/nim /usr/bin/nim

View File

@@ -45,7 +45,7 @@ src_test() {
src_install() {
./koch install "${D}/usr" || die "koch install failed"
rm -r "${D}/usr/nim/doc"
rm -r "${D}/usr/nim/doc" || die "failed to remove 'doc'"
dodir /usr/bin
dosym ../nim/bin/nim /usr/bin/nim

View File

@@ -43,7 +43,7 @@ src_test() {
src_install() {
./koch install "${D}/usr" || die "koch install failed"
rm -r "${D}/usr/nim/doc"
rm -r "${D}/usr/nim/doc" || die "failed to remove 'doc'"
dodir /usr/bin
dosym ../nim/bin/nim /usr/bin/nim