diff options
-rwxr-xr-x | bin/reproducible_build.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 014a8af2..88064b62 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -266,9 +266,10 @@ check_buildinfo() { grep-dctrl -s Build-Environment -n ${SRCPACKAGE} ./b1/$BUILDINFO > $TMPFILE1 grep-dctrl -s Build-Environment -n ${SRCPACKAGE} ./b2/$BUILDINFO > $TMPFILE2 set +e - RESULT=$(diff $TMPFILE1 $TMPFILE2) - rm $TMPFILE1 $TMPFILE2 + diff $TMPFILE1 $TMPFILE2 + RESULT=$? set -e + rm $TMPFILE1 $TMPFILE2 if [ $RESULT -eq 1 ] ; then irc_message "$BUILDINFO varies, probably due to mirror update. Please investigate ${BUILD_URL} and make reproducible_build.sh deal properly with this." fi |