diff --git a/go/tools/mcountlines b/go/tools/mcountlines index b9b22ca98..1ca6bd46c 100755 --- a/go/tools/mcountlines +++ b/go/tools/mcountlines @@ -1,13 +1,13 @@ #!/bin/bash wc -l \ - $(find src/miller -name \*.go | grep -v src/miller/parsing) \ + $(find src -name \*.go | grep -v src/parsing) \ src/miller/parsing/mlr.bnf \ | sort -n echo wc -c \ - $(find src/miller -name \*.go | grep -v src/miller/parsing) \ + $(find src -name \*.go | grep -v src/parsing) \ src/miller/parsing/mlr.bnf \ | sort -n \ | tail -n 5