From b3b1cfba424a4a48818071e267167b54bd4e1687 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Mon, 9 Mar 2009 12:24:43 -0700 Subject: 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: Aaron Griffin --- makechrootpkg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'makechrootpkg') diff --git a/makechrootpkg b/makechrootpkg index 0411983..7e5d9f6 100755 --- a/makechrootpkg +++ b/makechrootpkg @@ -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" -- cgit v1.2.3-24-g4f1b