mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
Adds support for 'log_file' in hook config
Specify a filename on a per hook basis and pre-commit will write the STDOUT and STDERR of that hook into the file. Useful for CI. Resolves #499.
This commit is contained in:
parent
5d43b05bd3
commit
f2644a4f2e
6 changed files with 59 additions and 6 deletions
5
testing/resources/logfile_repo/bin/hook.sh
Executable file
5
testing/resources/logfile_repo/bin/hook.sh
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
echo "This is STDOUT output"
|
||||
echo "This is STDERR output" 1>&2
|
||||
|
||||
exit 1
|
||||
Loading…
Add table
Add a link
Reference in a new issue