mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
34548369e1
* Add API for manipulating Git hooks Signed-off-by: Segev Finer <segev@codeocean.com> * Replace code.gitea.io/sdk with PR branch temporarily for CI * Switch back to code.gitea.io/sdk@master * Return 403 instead of 404 on no permission to edit hooks in API * Add tests for Git hooks API * Update models/repo_list_test.go Co-Authored-By: segevfiner <segev208@gmail.com> * Update models/repo_list_test.go Co-Authored-By: segevfiner <segev208@gmail.com> * empty line
7 lines
181 B
Bash
Executable File
7 lines
181 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/pre-receive.d"`; do
|
|
sh "$SHELL_FOLDER/pre-receive.d/$i"
|
|
done |