Fix sanitizer test script

This patch removes the -t and -i options from docker exec
since this script is not interactive and not run in terminal
on CI.
This commit is contained in:
Sven Klemm 2020-08-28 11:09:17 +02:00 committed by Sven Klemm
parent 4608529aba
commit 1eceee3151

View File

@ -57,7 +57,7 @@ cleanup() {
docker_exec() {
# Echo to stderr
>&2 echo -e "\033[1m$1\033[0m: $2"
docker exec -it $1 /bin/bash -c "$2"
docker exec $1 /bin/bash -c "$2"
}
docker rm -f timescaledb-san 2>/dev/null || true