6 lines
249 B
Bash
Executable file
6 lines
249 B
Bash
Executable file
#!/bin/sh
|
|
# Install Nexus git hooks
|
|
REPO_ROOT="$(git rev-parse --show-toplevel)"
|
|
cp "$REPO_ROOT/scripts/nexus-commit-msg-hook.sh" "$REPO_ROOT/.git/hooks/commit-msg"
|
|
chmod +x "$REPO_ROOT/.git/hooks/commit-msg"
|
|
echo "Nexus commit-msg hook installed."
|