ci(fix): fix shellsheck warning

This commit is contained in:
Thales Macedo Garitezi 2023-03-09 15:39:40 -03:00
parent e4f058ce2a
commit 8b1fa50413
1 changed files with 3 additions and 2 deletions

View File

@ -163,7 +163,7 @@ for dep in ${CT_DEPS}; do
;;
tdengine)
FILES+=( '.ci/docker-compose-file/docker-compose-tdengine-restful.yaml' )
;;
;;
clickhouse)
FILES+=( '.ci/docker-compose-file/docker-compose-clickhouse.yaml' )
;;
@ -183,7 +183,8 @@ for file in "${FILES[@]}"; do
F_OPTIONS="$F_OPTIONS -f $file"
done
export DOCKER_USER="$(id -u)"
DOCKER_USER="$(id -u)"
export DOCKER_USER
TTY=''
if [[ -t 1 ]]; then