terraform-provider-gitea/examples/pre-receive.sh

9 lines
201 B
Bash
Raw Permalink Normal View History

2022-08-30 19:02:06 +00:00
#!/bin/bash
while read oldrev newrev refname
do
branch=$(git rev-parse --symbolic --abbrev-ref $refname)
if [ "master" = "$branch" ]; then
echo "wrong branch"
exit 1
fi
done