From 254183ceff6ab22b4a300113292641b2b84cbab7 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Tue, 3 Sep 2024 11:06:24 +1200 Subject: [PATCH] =?UTF-8?q?chore:=20Updated=20build=20actions=20for=20win/?= =?UTF-8?q?nix=20=F0=9F=A7=91=E2=80=8D=F0=9F=92=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index f218bf4..766fa0e 100755 --- a/justfile +++ b/justfile @@ -8,11 +8,11 @@ install: build: @echo -n "Building app ... " - @go build {{flags}} -o bin/ && echo "OK" || echo "FAILED" + @go build {{flags}} -o bin/gosqldump ./main.go && 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" + @GOOS=windows GOARCH=amd64 go build {{flags}} -o bin/gosqldump.exe ./main.go && echo "OK" || echo "FAILED" update: go get -u go mod tidy -v