8 lines
135 B
Plaintext
8 lines
135 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
if command -v git > /dev/null && on_git_branch; then
|
||
|
git config --local core.hooksPath .githooks/
|
||
|
fi
|
||
|
|
||
|
use flake
|