From a2b59de9b935d7c0f34505903d060aec70e7ebae Mon Sep 17 00:00:00 2001 From: Rohinton Kazak Date: Sat, 27 Mar 2021 12:17:46 -0700 Subject: [PATCH] Update check-lint.sh Fix typo for find command. --- tools/check/check-lint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check/check-lint.sh b/tools/check/check-lint.sh index dd6f80c426..e6dad4256f 100755 --- a/tools/check/check-lint.sh +++ b/tools/check/check-lint.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # check for io/ioutil -GREP_IOUTIL=`find -name "*.go" | xargs grep -ns "io\/ioutil"` +GREP_IOUTIL=`find . -name "*.go" | xargs grep -ns "io\/ioutil"` if [[ ! -z $GREP_IOUTIL ]]; then echo $GREP_IOUTIL