Skip to content

Commit

Permalink
Fix typo with find command (#1256)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkazak authored Mar 29, 2021
1 parent da012e4 commit 09c186a
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 09c186a

Please sign in to comment.