diff options
-rwxr-xr-x | build-aux/valgrind.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/valgrind.sh b/build-aux/valgrind.sh index a5106d9..991b906 100755 --- a/build-aux/valgrind.sh +++ b/build-aux/valgrind.sh @@ -10,7 +10,7 @@ export TESTS_ENVIRONMENT=" --show-possibly-lost=no" if [[ "${1}" == *.sh ]]; then - exec "${@}" + exec "${@}" else - exec ${TESTS_ENVIRONMENT} "${@}" + exec ${TESTS_ENVIRONMENT} "${@}" fi |