diff --git a/cmd/update.go b/cmd/update.go index 05d1f65..f4d578a 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -1,21 +1,20 @@ /* -Copyright © 2023 NAME HERE - +Copyright © 2023 Allan Capistrano */ package cmd import ( "fmt" - "github.com/spf13/cobra" "github.com/allancapistrano/gbc/config" + "github.com/spf13/cobra" ) // updateCmd represents the update command var updateCmd = &cobra.Command{ Use: "update", Short: "Update gbc to the latest version available.", - Long: `Update gbc to the latest version available.`, + Long: `Update gbc to the latest version available.`, Run: func(cmd *cobra.Command, args []string) { if !config.IsLatestVersion(GBC_VERSION) { //TODO diff --git a/config/updater.go b/config/updater.go index 16db17d..e32a29a 100644 --- a/config/updater.go +++ b/config/updater.go @@ -1,3 +1,6 @@ +/* +Copyright © 2023 Allan Capistrano +*/ package config import (