diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2017-01-20 23:10:22 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2017-01-20 23:10:22 +0100 |
commit | 306e29bcfa7d963fb4841829227a1e56360bc75d (patch) | |
tree | 39f4d3f4342ea8d977eab6e70bac284644476104 /build-aux | |
parent | 941a1c06c88d6cb5220ed1cdb66789e56a4fc21e (diff) | |
download | blogc-306e29bcfa7d963fb4841829227a1e56360bc75d.tar.gz blogc-306e29bcfa7d963fb4841829227a1e56360bc75d.tar.bz2 blogc-306e29bcfa7d963fb4841829227a1e56360bc75d.zip |
build: fixed mixed-tab in valgrind script
Diffstat (limited to 'build-aux')
-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 |