checks.bash: remove unused path from misspell

Change-Id: I14da7dbb2a69a9c6fc2d284155fd7182d587bfaa
Reviewed-on: https://go-review.googlesource.com/c/pkgsite-metrics/+/463626
Reviewed-by: Jonathan Amsterdam <jba@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Julie Qiu <julieqiu@google.com>
Reviewed-by: Julie Qiu <julieqiu@google.com>
diff --git a/checks.bash b/checks.bash
index 09955b4..d1ef2e8 100755
--- a/checks.bash
+++ b/checks.bash
@@ -83,7 +83,7 @@
 # check_misspell runs misspell on source files.
 check_misspell() {
   ensure_go_binary github.com/client9/misspell/cmd/misspell
-  runcmd misspell -error $(find . -name .git -prune -o -type f -not -name drydock-20220802.csv -not -name modules.txt)
+  runcmd misspell -error $(find . -name .git -prune -o -type f -not -name modules.txt)
 }
 
 go_linters() {