From c5531d246046dad90e42321592d12fd8080c75a6 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Tue, 7 Mar 2023 12:40:04 -0500 Subject: [PATCH] Added app-dir override for make commands --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 17f689d..d4315f3 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ BREWPATH ?= /opt/homebrew/bin BREW = $(BREWPATH)/brew DOTS = $(BREWPATH)/dots +APPDIR ?= /Applications # This does not work inside of a make command. bootstrap-homebrew: @@ -13,10 +14,10 @@ install-dots: "$(BREW)" install dots bootstrap-minimal: bootstrap-homebrew install-dots - "$(DOTS)" install --minimal + "$(DOTS)" install --minimal --app-dir "$(APPDIR)" bootstrap: bootstrap-homebrew install-dots - "$(DOTS)" install --full + "$(DOTS)" install --full --app-dir "$(APPDIR)" # make a local zsh configuration file, to extend # the normal .zshrc for configuration that is only