Skip to content

Commit

Permalink
Remove debug logging (#48)
Browse files Browse the repository at this point in the history
remove debug logging
  • Loading branch information
hbeckmann authored Aug 22, 2024
1 parent 2bc9fc3 commit 820cac2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.8.0
v1.8.1
4 changes: 1 addition & 3 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,7 @@ func getLatestVersion() (string, error) {
goproxy := "https://proxy.golang.org"
cmd := exec.Command("go", "env", "GOPROXY")
output, err := cmd.Output()
if err != nil {
fmt.Printf("failed to get GOPROXY: %v\n", err)
} else {
if err == nil {
goproxy = strings.TrimSpace(string(output))
}

Expand Down

0 comments on commit 820cac2

Please sign in to comment.