Fix run_npm_test.sh
`docker exec` must be invoked without the -t flag as no terminal is present.
This commit is contained in:
parent
f6cd8b6454
commit
a05b8c3ab4
@ -80,7 +80,7 @@ do
|
||||
printf "Waiting for $node to start... "
|
||||
for ((i=0; i<60; i++))
|
||||
do
|
||||
docker exec -ti $node mysql -umaxuser -pmaxpwd -e "select 1" >& /dev/null && break
|
||||
docker exec -i $node mysql -umaxuser -pmaxpwd -e "select 1" >& /dev/null && break
|
||||
sleep 1
|
||||
done
|
||||
echo "Done!"
|
||||
|
Loading…
x
Reference in New Issue
Block a user