diff --git a/update/update.go b/update/update.go index 04c82b019..70829bf3d 100644 --- a/update/update.go +++ b/update/update.go @@ -28,7 +28,6 @@ func CheckForUpdate(client *api.Client, stateFilePath, repo, currentVersion stri return nil, err } - fmt.Printf("🌭 %+v -> %+v\n", latestRelease.Version, currentVersion) if versionGreaterThan(latestRelease.Version, currentVersion) { return latestRelease, nil } @@ -52,7 +51,6 @@ func getLatestReleaseInfo(client *api.Client, stateFilePath, repo, currentVersio if err != nil { return nil, err } - fmt.Printf("🌭 latestRelease: %+v\n", latestRelease) err = setStateEntry(stateFilePath, time.Now(), latestRelease) if err != nil { diff --git a/update/update_test.go b/update/update_test.go index f739c67f8..0fdfb4e29 100644 --- a/update/update_test.go +++ b/update/update_test.go @@ -97,6 +97,5 @@ func tempFilePath() string { log.Fatal(err) } os.Remove(file.Name()) - fmt.Printf("🌭 %+v\n", file.Name()) return file.Name() }