mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
11 lines
180 B
Bash
Executable File
11 lines
180 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
BRANCH_NAME=$(git branch | grep '*' | sed 's/* //')
|
|
|
|
if [[ $BRANCH_NAME == 'master' ]]; then
|
|
# Build new web documentation:
|
|
make build-gh-pages
|
|
fi
|