From 636c6f91437c71b59959d5e37470b00bf37eb7d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Sun, 11 Feb 2024 19:55:55 -0800 Subject: [PATCH] add `go install` to justfile --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index cc92e7e..7a59821 100644 --- a/justfile +++ b/justfile @@ -22,6 +22,10 @@ run-binary: build run-args args: go run {{cmd}} {{args}} +# install binary into $GOPATH +install: + go install {{cmd}} + # clean up after yourself clean: rm {{output}}