Fix run_npm_test.sh

`docker exec` must be invoked without the -t flag as no terminal is
present.
This commit is contained in:
Markus Mäkelä 2018-08-09 12:38:42 +03:00
parent f6cd8b6454
commit a05b8c3ab4
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19

View File

@ -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!"