git-scripts/git-templates/project-test/hooks/pre-receive.d/07-fail

9 lines
108 B
Plaintext
Raw Normal View History

2019-06-01 23:21:13 +00:00
#!/usr/bin/env bash
set -e
set -u
my_input=$(cat)
echo "$my_input" | while read my_line; do
exit 160
done