Merge pull request #674 from matthiasbeyer/tests-disable-debug-output

Disable debug output in shell-script tests
This commit is contained in:
Matthias Beyer 2016-08-29 11:23:05 +02:00 committed by GitHub
commit 66248f6b4e
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ imag-call-binary() {
local binary=$1; shift local binary=$1; shift
[[ -d $searchdir ]] || { err "FATAL: No directory $searchdir"; exit 1; } [[ -d $searchdir ]] || { err "FATAL: No directory $searchdir"; exit 1; }
local bin=$(find $searchdir -iname $binary -type f -executable) local bin=$(find $searchdir -iname $binary -type f -executable)
local flags="--no-color --config ./imagrc.toml --override-config store.implicit-create=true --debug --rtp $RUNTIME" local flags="--no-color --config ./imagrc.toml --override-config store.implicit-create=true --rtp $RUNTIME"
out "Calling '$bin $flags $*'" out "Calling '$bin $flags $*'"
$bin $flags $* $bin $flags $*
} }