diff --git a/platform/gitee.go b/platform/gitee.go index ba880d8..f7d4653 100644 --- a/platform/gitee.go +++ b/platform/gitee.go @@ -13,9 +13,9 @@ var nesOpts = struct { func GiteeCommand() *gcli.Command { gitee := &gcli.Command{ - Func: syncGitee, - Name: "gitee", - UseFor: "This command is used for sync local repo to Gitee", + Func: syncGitee, + Name: "gitee", + UseFor: "This command is used for sync local repo to Gitee", Examples: `Simple usage: {$binName} {$cmd} /Users/Zoker/repos/`, } @@ -36,4 +36,4 @@ func syncGitee(c *gcli.Command, args []string) error { share.ReadyToAuth(args[0]) } return nil -} \ No newline at end of file +} diff --git a/share/tools.go b/share/tools.go index cd7bc11..6166866 100644 --- a/share/tools.go +++ b/share/tools.go @@ -41,7 +41,7 @@ func GetGitDir(repoDir string) (repos []string, err error) { continue } repoPath := repoDir + pathSep + repo.Name() // todo check repo path valid - if isGitRepo(repoPath) { // todo goroutine + if isGitRepo(repoPath) { // todo goroutine repos = append(repos, repoPath) } } @@ -84,7 +84,7 @@ func printRepos(repos []string) { func repoSize(path string) (float32, bool, error) { var size int64 - err := filepath.Walk(path,func(_ string,info os.FileInfo,err error) error { + err := filepath.Walk(path, func(_ string, info os.FileInfo, err error) error { if !info.IsDir() { size += info.Size() } @@ -92,7 +92,7 @@ func repoSize(path string) (float32, bool, error) { }) outOf1G := false - if size > 1024 * 1024 * 1024 { + if size > 1024*1024*1024 { outOf1G = true } sizeMB := float32(size) / 1024.0 / 1024.0 @@ -121,4 +121,4 @@ func ReadyToAuth(repoDir string) []string { func ExitMessage() { color.Yellow.Println("Bye, see you next time!") -} \ No newline at end of file +} diff --git a/up2.go b/up2.go index 62e6ef1..b7ccac5 100644 --- a/up2.go +++ b/up2.go @@ -2,6 +2,7 @@ package main import ( "up2GitX/platform" + "github.com/gookit/gcli/v2" ) @@ -11,4 +12,4 @@ func main() { up2.Description = "A tool for easily sync multiple local repo to different platform like Gitee, Github or Gitlab" up2.Add(platform.GiteeCommand()) up2.Run() -} \ No newline at end of file +}