summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-21 15:33:30 -0600
committermo khan <mo@mokhan.ca>2025-07-21 15:33:30 -0600
commitd319c49c79b85a7000a9453589a15536f97f97eb (patch)
tree28eb9440e3f354c68cb993d5a9a1a64ba5998828
parent8de4cbbccd1fe2aae5a9919eab747181809603fa (diff)
chore: use mise exec to install tools
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 9d88429..9d582c4 100644
--- a/Makefile
+++ b/Makefile
@@ -18,13 +18,14 @@ clean:
setup:
@mise install
- @go mod tidy
- @go mod vendor
- @go tool
+ @mise exec go -- go install github.com/xlgmokha/minit@latest
+ @mise exec go -- go mod tidy
+ @mise exec go -- go mod vendor
+ @mise exec go -- go tool
@if command -v brew >/dev/null 2>&1; then \
brew bundle; \
fi
- @pip install dumb-init
+ @@mise exec python -- pip install dumb-init
build: $(AUTHZD_BIN) $(SPARKLED_BIN)