diff --git a/justfile b/justfile index c5cc2b0..f218bf4 100755 --- a/justfile +++ b/justfile @@ -9,6 +9,10 @@ install: build: @echo -n "Building app ... " @go build {{flags}} -o bin/ && echo "OK" || echo "FAILED" + +build-win: + @echo -n "Building app for windows ... " + @GOOS=windows GOARCH=amd64 go build {{flags}} -o bin/ && echo "OK" || echo "FAILED" update: go get -u go mod tidy -v