commit: 9f11b6737165df85e241da9c56494d610983c335
Author: Rahil Bhimjiani <me <AT> rahil <DOT> rocks>
AuthorDate: Mon Feb 26 06:18:55 2024 +0000
Commit: Rahil Bhimjiani <rahil3108 <AT> gmail <DOT> com>
CommitDate: Mon Feb 26 06:18:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9f11b673
www-apps/vaultwarden-web/vaultwarden-web: add line break
I always forget about running pkgcheck prior to pushing
Signed-off-by: Rahil Bhimjiani <me <AT> rahil.rocks>
www-apps/vaultwarden-web/vaultwarden-web-2024.1.2b.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/www-apps/vaultwarden-web/vaultwarden-web-2024.1.2b.ebuild
b/www-apps/vaultwarden-web/vaultwarden-web-2024.1.2b.ebuild
index e39f3cfb3b..60158ed172 100644
--- a/www-apps/vaultwarden-web/vaultwarden-web-2024.1.2b.ebuild
+++ b/www-apps/vaultwarden-web/vaultwarden-web-2024.1.2b.ebuild
@@ -60,7 +60,8 @@ src_prepare() {
src_compile() {
# mimicking the behaviour of
https://github.com/dani-garcia/bw_web_builds/blob/master/scripts/build_web_vault.sh
pushd apps/web
- npm --verbose --offline run dist:oss:selfhost && printf
'{"version":"%s"}' "${PV}" | tee build/vw-version.json || die "Build failed!
Try prebuilt from upstream ${CATEGORY}/${PN}-bin"
+ npm --verbose --offline run dist:oss:selfhost && printf
'{"version":"%s"}' "${PV}" | tee build/vw-version.json \
+ || die "Build failed! Try prebuilt from upstream
${CATEGORY}/${PN}-bin"
# although following is optional in upstream's build process, it
reduced build dir size from 44M to 25M
find build -name "*.map" -delete || die
}