Skip to content

Commit

Permalink
remove unused methods in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
maidul98 committed Dec 11, 2023
1 parent 72ac2c0 commit f940f8b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cli/packages/util/check-for-update.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import (
"os/exec"
"runtime"
"strings"
"time"

"github.com/fatih/color"
"github.com/rs/zerolog/log"
Expand All @@ -21,7 +20,7 @@ func CheckForUpdate() {
if checkEnv := os.Getenv("INFISICAL_DISABLE_UPDATE_CHECK"); checkEnv != "" {
return
}
latestVersion, publishedDate, err := getLatestTag("Infisical", "infisical")
latestVersion, _, err := getLatestTag("Infisical", "infisical")
if err != nil {
log.Debug().Err(err)
// do nothing and continue
Expand Down

0 comments on commit f940f8b

Please sign in to comment.