mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
dev-lang/nim: added missing '|| die' in rm call
Noticed by Soap__. Package-Manager: portage-2.3.2
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user