mirror of
https://github.com/h3pdesign/Neon-Vision-Editor
synced 2026-04-21 21:37:17 +00:00
10 lines
276 B
Bash
Executable file
10 lines
276 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(git rev-parse --show-toplevel)"
|
|
cd "$repo_root"
|
|
|
|
chmod +x .githooks/pre-commit scripts/bump_build_number.sh
|
|
git config core.hooksPath .githooks
|
|
|
|
echo "Git hooks installed. pre-commit will auto-bump CURRENT_PROJECT_VERSION."
|