This repository has been archived on 2020-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
installer-scripts/Makefile

14 lines
535 B
Makefile

ABRA_VERSION := 0.3.1
ABRA_INSTALL_SRC := "https://git.autonomic.zone/autonomic-cooperative/abra/raw/tag/$(ABRA_VERSION)/script.d/abra-installer"
SWARM_INSTALL_SRC := "https://git.autonomic.zone/autonomic-cooperative/abra/raw/tag/$(ABRA_VERSION)/script.d/swarm-installer"
default: update-abra-installer update-swarm-installer
update-abra-installer:
@curl $(ABRA_INSTALL_SRC) > abra/abra-installer
update-swarm-installer:
@curl $(SWARM_INSTALL_SRC) > swarm/swarm-installer
.PHONY: update-abra-installer update-swarm-installer