From 43f8660c758f341734b1ed088376699217ae5de0 Mon Sep 17 00:00:00 2001 From: fidgetingbits Date: Tue, 9 Jul 2024 08:37:27 +0800 Subject: [PATCH] remove pre-commit install from nix dev shell (#2461) --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e67220cfc5..b34713f03e 100644 --- a/flake.nix +++ b/flake.nix @@ -44,7 +44,7 @@ buildInputs = [ pkgs.bashInteractive ]; shellHook = '' if [ ! -f .git/hooks/pre-commit ]; then - pre-commit install + echo "You can run 'pre-commit install' to install git commit hooks if you want them." fi pnpm install