From 05ff3f00fdbd2c9824da6eb623c1c97209eabe63 Mon Sep 17 00:00:00 2001 From: Joe Finney Date: Mon, 7 Mar 2016 16:49:39 -0800 Subject: [PATCH] Fix regex in list-feature-tests.sh. --- hack/list-feature-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/list-feature-tests.sh b/hack/list-feature-tests.sh index 42eeda77adf..cf2b6f04d68 100755 --- a/hack/list-feature-tests.sh +++ b/hack/list-feature-tests.sh @@ -20,4 +20,4 @@ set -o nounset set -o pipefail KUBE_ROOT=$(dirname "${BASH_SOURCE}")/.. -grep "\[Feature:(.+?)\]" "${KUBE_ROOT}"/test/e2e/*.go -Poh | sort | uniq +grep "\[Feature:\w+\]" "${KUBE_ROOT}"/test/e2e/*.go -Poh | sort | uniq