mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-08 19:10:31 +00:00
22 lines
346 B
Bash
Executable File
22 lines
346 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
BRANCH_NAME=$(git branch | grep '\*' | sed 's/* //')
|
|
|
|
if [[ "$BRANCH_NAME" != '(no branch)' ]]; then
|
|
unset GIT_WORK_TREE
|
|
|
|
# Run tests:
|
|
make test
|
|
|
|
if [[ "$BRANCH_NAME" == "staging" ]]; then
|
|
# Build new manuals:
|
|
make build-man
|
|
|
|
# Add new files:
|
|
git add man/man1/*
|
|
git add man/man7/*
|
|
fi
|
|
fi
|