From 3b8b482f0299a36033ba0730799c0647a55452aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Wed, 13 Mar 2013 17:15:35 +0100 Subject: [PATCH] Call update-checksums only if it exists --- build_all.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build_all.sh b/build_all.sh index bbc39e4..8976065 100755 --- a/build_all.sh +++ b/build_all.sh @@ -69,4 +69,6 @@ for KALI_ARCH in $KALI_ARCHES; do mv binary.log $TARGET_DIR/kali-$KALI_VERSION-$KALI_ARCH.log done -../bin/update-checksums $TARGET_DIR +if [ -x ../bin/update-checksums ]; then + ../bin/update-checksums $TARGET_DIR +fi