summaryrefslogtreecommitdiffstats
path: root/tests/gitea-repositories-meta/user13/repo11.git/hooks/post-receive
blob: 4b3d452abcce2c83e90c253fa2d3fbf0c3ec18ab (plain)
1
2
3
4
5
6
7
#!/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