git-scripts/git-templates/project-test/hooks/post-receive.d/04-fail

9 lines
108 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -u
my_input=$(cat)
echo "$my_input" | while read my_line; do
exit 160
done