From 0a98e961b638af177b6e0aebf63f1388cb2b3498 Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Thu, 7 Apr 2022 11:35:27 -0400 Subject: [PATCH] 18947: Use git-ls-files instead of git-grep to find go dirs. Arvados-DCO-1.1-Signed-off-by: Tom Clegg --- build/run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/run-tests.sh b/build/run-tests.sh index 67c54c98b0..54535cfef5 100755 --- a/build/run-tests.sh +++ b/build/run-tests.sh @@ -985,7 +985,7 @@ pythonstuff=( ) declare -a gostuff -gostuff=($(cd "$WORKSPACE" && git grep -lw func | grep \\.go | sed -e 's/\/[^\/]*$//' | sort -u)) +gostuff=($(cd "$WORKSPACE" && git ls-files | grep '\.go$' | sed -e 's/\/[^\/]*$//' | sort -u)) install_apps/workbench() { cd "$WORKSPACE/apps/workbench" \ -- 2.30.2