mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-02 08:19:04 +01:00
dda53569b1
(cherry picked from commit 8b92eba21f5c5cca277b8101ada0ea7a1fb32ae0)
7 lines
184 B
Bash
Executable file
7 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
|