From 00e6ea958c3cadec0d351cc85910696f43288032 Mon Sep 17 00:00:00 2001 From: Steven Roomberg Date: Thu, 16 Jan 2025 13:01:26 -0500 Subject: [PATCH] try install instead of build --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1dd0a42f..5eda8881 100644 --- a/Makefile +++ b/Makefile @@ -19,10 +19,10 @@ node_modules/build: date -u >> $@ .build/bin/houndd: ui/.build/ui $(SRCS) - go build -o $@ ${REPO:-github.com/hound-search/hound}/cmds/houndd + go install github.com/hound-search/hound/cmds/houndd@latest .build/bin/hound: $(SRCS) - go build -o $@ ${REPO:-github.com/hound-search/hound}/cmds/hound + go install github.com/hound-search/hound/cmds/hound@latest ui/.build/ui: node_modules/build $(UI) mkdir -p ui/.build/ui