abra-bash/Makefile

18 lines
362 B
Makefile
Raw Normal View History

default: test
2020-09-08 06:48:53 +00:00
dev-install:
@ln -sf $(PWD)/abra ~/.local/bin
2020-09-07 21:29:29 +00:00
install:
@curl https://install.abra.autonomic.zone | bash
test:
@bats test.bats
dev-install-yq:
@wget https://github.com/mikefarah/yq/releases/download/3.3.2/yq_linux_amd64 && \
2020-09-08 07:19:03 +00:00
chmod +x yq_linux_amd64 && \
mv yq_linux_amd64 ~/.local/bin/yq
2020-09-08 07:19:03 +00:00
.PHONY: dev-install install test dev-install-yq