Skip to content

Commit

Permalink
Update check-lint.sh
Browse files Browse the repository at this point in the history
Fix typo for find command.
  • Loading branch information
rkazak authored Mar 27, 2021
1 parent 1225c01 commit a2b59de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/check/check-lint.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit a2b59de

Please sign in to comment.