mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-03-13 19:45:05 +00:00
9 lines
153 B
Bash
9 lines
153 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
|
||
|
cd "${script_path}/.." || exit 1
|
||
|
|
||
|
mkdir -p .git/hooks
|
||
|
cp meta/pre-commit .git/hooks/.
|
||
|
|