From: Scott Worley Date: Fri, 14 Jul 2023 00:45:22 +0000 (-0700) Subject: Hooks should not require network access X-Git-Url: http://git.scottworley.com/pluta-lesnura/commitdiff_plain/0714539db698534ec5c34e4ee7d370439e293cac?hp=57f490a06fe793a25172ea5f6a13945c363cc6aa Hooks should not require network access --- diff --git a/git-pre-commit-hook b/git-pre-commit-hook index 1cc63cb..7b44b54 100755 --- a/git-pre-commit-hook +++ b/git-pre-commit-hook @@ -30,7 +30,7 @@ in_git_index_in_tmpdir() { } verify() { - cargo test + cargo test --offline cargo clippy -- -D warnings -W clippy::pedantic rustfmt --check src/*.rs }