From 67fb4aba9baab576fc562df680ddc11a5ae5ba16 Mon Sep 17 00:00:00 2001 From: AllanCapistrano Date: Wed, 26 Jul 2023 10:00:12 -0300 Subject: [PATCH] docs: add copyright message --- cmd/update.go | 7 +++---- config/updater.go | 3 +++ 2 files changed, 6 insertions(+), 4 deletions(-) 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 (