Commit b3b1cfba authored by Aaron Griffin's avatar Aaron Griffin
Browse files

makechrootpkg: Don't fail if no chroot namcap



The call to namcap was causing the script to fail
if namcap didn't exist or returned 1. Fix that by
always returning 0...

Signed-off-by: default avatarAaron Griffin <aaronmgriffin@gmail.com>
parent 486375ba
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -214,7 +214,8 @@ export LANG=$LOCALE
cd /build
export HOME=/build
sudo -u nobody makepkg $MAKEPKG_ARGS || touch BUILD_FAILED
namcap *.pkg.tar.gz > /pkgdest/namcap.log
which namcap 2>&1 >/dev/null && namcap *.pkg.tar.gz > /pkgdest/namcap.log
exit 0
EOF
) > "$uniondir/chrootbuild"
chmod +x "$uniondir/chrootbuild"