ci: Improve baremetal's logging of the job env var passthrough.
[mesa.git] / .gitlab-ci / bare-metal / expect-output.sh
1 #!/bin/bash
2
3 set -e
4
5 echo "Waiting for $1 to say '$2'"
6
7 while ! grep -q "$2" $1; do
8 sleep 2
9 done