mirror of
https://github.com/go-gitea/gitea.git
synced 2024-12-21 18:03:46 +08:00
a0d1630700
Backport #31207 by @lunny Fix #31134 Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
8 lines
184 B
Bash
Executable File
8 lines
184 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/proc-receive.d"`; do
|
|
sh "$SHELL_FOLDER/proc-receive.d/$i"
|
|
done
|