From 98fe918b9789266e1f72b0b29f4d2da6d9bfbf8b Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Tue, 5 Oct 2021 20:57:37 +0200 Subject: [PATCH] Makefile: Add global install parameter for the CLI --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 3c192e879..66b39d19b 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,10 @@ check-machine: ## Check your local machine setup to be prepared for the installa command -v sops >/dev/null command -v terraform >/dev/null +.PHONY: cli +cli: ## Install koolbox CLI (Contains all tools used in this project) + cd ./cli && make install + .PHONY: deploy deploy: check-machine ## Deploy infrastructure on Hetzner Cloud cd ./terraform && make apply -- GitLab