Skip to content

Commit

Permalink
Update main.go to allow build to work correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
thogarty committed Aug 20, 2024
1 parent 3c26623 commit 0064ede
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build/go-junit-report-$(VERSION)-$(GOOS)-$(GOARCH).tar.gz: build/go-junit-report
build/go-junit-report-$(VERSION)-windows-amd64.zip: build/go-junit-report.exe
zip -j $@ build/go-junit-report.exe

release: test
release:
$(MAKE) GOOS=linux GOARCH=amd64 build/go-junit-report-$(VERSION)-linux-amd64.tar.gz
$(MAKE) GOOS=windows GOARCH=amd64 build/go-junit-report-$(VERSION)-windows-amd64.zip
$(MAKE) GOOS=darwin GOARCH=amd64 build/go-junit-report-$(VERSION)-darwin-amd64.tar.gz
Expand Down
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import (
"os"
"strings"

"github.com/jstemmer/go-junit-report/v2/internal/gojunitreport"
"github.com/jstemmer/go-junit-report/v2/parser/gotest"
"github.com/thogarty/go-junit-report/v2/internal/gojunitreport"
"github.com/thogarty/go-junit-report/v2/parser/gotest"
)

// Current release information printed by the -version flag.
var (
Version = "v2.2.0-dev"
Version = "v0.1.2"
Revision = "HEAD"
BuildTime string
)
Expand Down

0 comments on commit 0064ede

Please sign in to comment.