diff --git a/justfile b/justfile index 197bef272e9af2ee1fac5a668a4c046671e7e470..6f450c2e2c7879a05c555b4c7250da588e11a00a 100644 --- a/justfile +++ b/justfile @@ -44,6 +44,10 @@ build: # Building nasin-pali CGO_ENABLED=0 GOOS={{GOOS}} GOARCH={{GOARCH}} go build -o np -ldflags "-s -w -X main.version={{VERSION}}" +install: + # Installing nasin-pali + CGO_ENABLED=0 GOOS={{GOOS}} GOARCH={{GOARCH}} go install -ldflags "-s -w -X main.version={{VERSION}}" + run *FLAGS: # Running np CGO_ENABLED=0 GOOS={{GOOS}} GOARCH={{GOARCH}} go run -ldflags "-s -w -X main.version={{VERSION}}" . {{FLAGS}}