1
0
Fork 0
forked from NYANDEV/forgejo
forgejo/tests/gitea-repositories-meta/user3/repo5.git/hooks/post-receive
Lunny Xiao de981c39e6
Fix bug of branches API with tests ()
Fix 
Extract from 

This PR added a repository's check when creating/deleting branches via
API. Mirror repository and archive repository cannot do that.
2023-07-01 10:52:52 +08:00

7 lines
No EOL
183 B
Bash
Executable file

#!/usr/bin/env bash
ORI_DIR=`pwd`
SHELL_FOLDER=$(cd "$(dirname "$0")";pwd)
cd "$ORI_DIR"
for i in `ls "$SHELL_FOLDER/post-receive.d"`; do
sh "$SHELL_FOLDER/post-receive.d/$i"
done