git-scripts/git-templates/project-test/hooks/pre-receive.d/02-pass

9 lines
115 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
echo "$my_line"
done