#!/bin/bash
set -eu
while ! grep -q "$@" "${CYLC_SUITE_LOG_DIR}/log"; do
    sleep 1
done
exit
