From 23fdd730e9d75355845fac2c2397162e6afc4682 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Wed, 11 Dec 2019 16:52:16 -0800 Subject: [PATCH] =?UTF-8?q?Less=20=F0=9F=8C=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- update/update.go | 2 -- update/update_test.go | 1 - 2 files changed, 3 deletions(-) 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() }