mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-08 19:10:31 +00:00
41 lines
961 B
Makefile
41 lines
961 B
Makefile
all: build
|
|
|
|
git-secret: src/_utils/* src/commands/* src/main.sh
|
|
@cat $^ > "$@"
|
|
@chmod +x git-secret
|
|
|
|
clean:
|
|
@rm -f git-secret
|
|
|
|
build: git-secret
|
|
|
|
install-test:
|
|
git clone https://github.com/sstephenson/bats.git vendor/bats
|
|
|
|
test:
|
|
@if [ ! -d "vendor/bats" ]; then make install-test; fi
|
|
@export SECRET_PROJECT_ROOT="${PWD}"; export PATH="${PWD}/vendor/bats/bin:${PWD}:${PATH}"; \
|
|
make develop; \
|
|
rm -rf temp; mkdir temp; cd temp; \
|
|
bats "../tests";
|
|
|
|
install-man:
|
|
gem install ronn
|
|
|
|
build-man:
|
|
@if [ ! `gem list ronn -i` == "true" ]; then make install-man; fi
|
|
ronn --roff man/man1/*.ronn
|
|
|
|
build-gh-pages:
|
|
@/usr/bin/env bash utils/gh-branch.sh
|
|
|
|
install-hooks:
|
|
@# pre-commit:
|
|
@ln -fs "${PWD}/utils/pre-commit.sh" "${PWD}/.git/hooks/pre-commit"
|
|
@chmod +x "${PWD}/.git/hooks/pre-commit"
|
|
@# post-commit:
|
|
@ln -fs "${PWD}/utils/post-commit.sh" "${PWD}/.git/hooks/post-commit"
|
|
@chmod +x "${PWD}/.git/hooks/post-commit"
|
|
|
|
develop: clean build install-hooks
|