diff --git a/Makefile b/Makefile index f16920f..835e14c 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ LDFLAGS := -X github.com/kagent-dev/tools/internal/version.Version=$(VERSION) -X ## Location to install dependencies to LOCALBIN ?= $(shell pwd)/bin -PATH := $HOME/local/bin:/opt/homebrew/bin/:$(LOCALBIN):$(PATH) +PATH := $(HOME)/local/bin:/opt/homebrew/bin/:$(LOCALBIN):$(PATH) HELM_DIST_FOLDER ?= $(shell pwd)/dist .PHONY: clean @@ -214,10 +214,10 @@ otel-local: .PHONY: tools-install tools-install: clean - mkdir -p $HOME/.local/bin + mkdir -p $(HOME)/.local/bin go build -ldflags "$(LDFLAGS)" -o $(LOCALBIN)/kagent-tools ./cmd go build -ldflags "$(LDFLAGS)" -o $(HOME)/.local/bin/kagent-tools ./cmd - $HOME/.local/bin/kagent-tools --version + $(HOME)/.local/bin/kagent-tools --version .PHONY: run-agentgateway run-agentgateway: tools-install diff --git a/README.md b/README.md index 0bc29be..a801cb1 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,13 @@ curl -sL https://raw.githubusercontent.com/kagent-dev/tools/refs/heads/main/scri - **Docker:** ```bash -docker run -it --rm -p 8084:8084 ghcr.io/kagent-dev/kagent/tools:0.0.10 +docker run -it --rm -p 8084:8084 ghcr.io/kagent-dev/kagent/tools:0.0.11 ``` - **Kubernetes** ```bash -helm upgrade -i -n kagent --create-namespace kagent-tools oci://ghcr.io/kagent-dev/tools/helm/kagent-tools --version 0.0.10 +helm upgrade -i -n kagent --create-namespace kagent-tools oci://ghcr.io/kagent-dev/tools/helm/kagent-tools --version 0.0.11 helm ls -A ```