diff --git a/specs/poetry/template/.githooks/pre-commit b/specs/poetry/template/.githooks/pre-commit index f894b36..64996ae 100644 --- a/specs/poetry/template/.githooks/pre-commit +++ b/specs/poetry/template/.githooks/pre-commit @@ -8,6 +8,6 @@ filesToFormat=$( for path in $filesToFormat do - black --quiet $path - git add $path + black --quiet "$path" + git add "$path" done;