add go install to justfile

This commit is contained in:
Lilian Jónsdóttir 2024-02-11 19:55:55 -08:00
parent c55d3478dd
commit 636c6f9143

View file

@ -22,6 +22,10 @@ run-binary: build
run-args args: run-args args:
go run {{cmd}} {{args}} go run {{cmd}} {{args}}
# install binary into $GOPATH
install:
go install {{cmd}}
# clean up after yourself # clean up after yourself
clean: clean:
rm {{output}} rm {{output}}