Skip to content

Commit

Permalink
./.test/run.sh:65:30: note: Double quote to prevent globbing and word…
Browse files Browse the repository at this point in the history
… splitting. [SC2086]
  • Loading branch information
grooverdan committed Jan 17, 2023
1 parent 7139d23 commit f07f84c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .test/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ runandwait()
do
(( waiting-- ))
sleep 1
if ! docker exec -i "$cid" $mariadb -h localhost --protocol tcp -P 3306 -e 'select 1' 2>&1 | grep -F "Can't connect" > /dev/null
if ! docker exec -i "$cid" "$mariadb" -h localhost --protocol tcp -P 3306 -e 'select 1' 2>&1 | grep -F "Can't connect" > /dev/null
then
break
fi
Expand Down

0 comments on commit f07f84c

Please sign in to comment.