From d5f7ed637a1112c5bd5832004f9c0674376a76a6 Mon Sep 17 00:00:00 2001 From: Yan Jiang <43395312+jy5275@users.noreply.github.com> Date: Mon, 18 Aug 2025 21:18:01 +0800 Subject: [PATCH] Fix MATCH explanation in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ad706b1..421c3ec0 100644 --- a/README.md +++ b/README.md @@ -411,7 +411,7 @@ be helpful when trying to understand what went wrong. A few helper functions are available for scripts to use: * _REBOOT_ - Reboot the system. See [below](#rebooting) for details. - * _MATCH_ - Run `grep -q -e` on stdin. Without match, print error including content. + * _MATCH_ - Run `grep -q -E` on stdin. Without match, print error including content. * _NOMATCH_ - Assert no match on stdin. If match found, print error including content. * _ERROR_ - Fail script with provided error message only instead of script trace. * _FATAL_ - Similar to ERROR, but prevents retries. Specific to [adhoc backend](#adhoc).