From ab89fa15fd1908587c6b215280e32c44f8028579 Mon Sep 17 00:00:00 2001 From: John Kerl Date: Sun, 14 Feb 2021 01:24:01 -0500 Subject: [PATCH] more --- go/tools/mcountlines | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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