mirror of
https://gitee.com/dgiiot/dgiot.git
synced 2024-12-02 20:28:40 +08:00
14 lines
214 B
Bash
Executable File
14 lines
214 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
if [ ! -d .git ]; then
|
|
exit 0
|
|
fi
|
|
|
|
mkdir -p ".git/hooks"
|
|
|
|
if [ ! -L '.git/hooks/pre-push' ]; then
|
|
ln -sf '../../scripts/git-hook-pre-push.sh' '.git/hooks/pre-push'
|
|
fi
|