From: Thomas D Date: Fri, 13 Feb 2015 03:01:09 +0000 (+0100) Subject: Fix testrunner.sh's exit status X-Git-Tag: dnsdist-1.0.0-alpha1~285^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d370a0610a3ea847793c15aa37a3721e461608cf;p=pdns Fix testrunner.sh's exit status "$rv" isn't defined so use "$?" instead. --- diff --git a/modules/remotebackend/testrunner.sh b/modules/remotebackend/testrunner.sh index 777a1da10..079750e30 100755 --- a/modules/remotebackend/testrunner.sh +++ b/modules/remotebackend/testrunner.sh @@ -236,4 +236,4 @@ case "$mode" in ;; esac -exit $rv +exit $?