*/*: fix npm install error message
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2022-09-04 06:57:01 +02:00
parent 1a112d3444
commit da69c4ae46
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
3 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ src_install() {
--global \
--prefix "${ED}"/usr \
--cache "${T}"/npm-cache \
install "${DISTDIR}"/${P}.tgz || die "Compilation failed"
install "${DISTDIR}"/${P}.tgz || die "npm install failed"
einstalldocs
}

View File

@ -40,7 +40,7 @@ src_install() {
--global \
--prefix "${ED}"/usr \
--cache "${T}"/npm-cache \
install "${DISTDIR}"/${P}.tgz || die "Compilation failed"
install "${DISTDIR}"/${P}.tgz || die "npm install failed"
einstalldocs
}

View File

@ -37,7 +37,7 @@ src_install() {
--global \
--prefix "${ED}"/usr \
--cache "${T}"/npm-cache \
install "${DISTDIR}"/${P}.tgz || die "Compilation failed"
install "${DISTDIR}"/${P}.tgz || die "npm install failed"
einstalldocs
}