Skip to content

Commit f07f84c

Browse files
committed
./.test/run.sh:65:30: note: Double quote to prevent globbing and word splitting. [SC2086]
1 parent 7139d23 commit f07f84c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.test/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ runandwait()
6262
do
6363
(( waiting-- ))
6464
sleep 1
65-
if ! docker exec -i "$cid" $mariadb -h localhost --protocol tcp -P 3306 -e 'select 1' 2>&1 | grep -F "Can't connect" > /dev/null
65+
if ! docker exec -i "$cid" "$mariadb" -h localhost --protocol tcp -P 3306 -e 'select 1' 2>&1 | grep -F "Can't connect" > /dev/null
6666
then
6767
break
6868
fi

0 commit comments

Comments
 (0)