First stab at abra installer script

This commit is contained in:
Luke Murphy
2020-09-22 13:41:52 +02:00
commit c045e019fa
6 changed files with 105 additions and 0 deletions

9
Makefile Normal file
View File

@ -0,0 +1,9 @@
ABRA_VERSION := 0.1.1
ABRA_SRC := "https://git.autonomic.zone/autonomic-cooperative/abra/raw/tag/$(ABRA_VERSION)/installer"
default: update-abra-installer
update-abra-installer:
@curl $(ABRA_SRC) > abra/installer
.PHONY: update-abra-installer