test: Fix CI env variable value

This commit is contained in:
Shrikant Sharat Kandula 2023-12-23 12:08:04 +05:30 committed by GitHub
parent 5630a3fb70
commit 433a72134f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ docker build -f Dockerfile --tag ar ..
declare -a args
args+=(--hostname ar)
if [[ "${CI-}" != 1 ]]; then
if [[ "${CI-}" != true ]]; then
args+=(--interactive --tty)
fi