Skip to content

Commit

Permalink
Fixed 'log' command output alignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Apr 28, 2024
1 parent aa87f0d commit 7aaf116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func LogRepo() {

fmt.Println("\033[35mName\033[0m:\t\t" + qrepo.Name)
fmt.Println("\033[35mAuthor\033[0m:\t\t" + qrepo.Author)
fmt.Println("\033[35mVersion\033[0m:\t\t" + qrepo.Version)
fmt.Println("\033[35mVersion\033[0m:\t" + qrepo.Version)
fmt.Println("\033[35mDescription\033[0m:\t" + qrepo.Description)
fmt.Println("\033[35mGit\033[0m:\t\t" + qrepo.Git)
fmt.Println("\033[35mScripts\033[0m:\t" + strings.Join(qrepo.getMapKeys(), ", "))
Expand Down

0 comments on commit 7aaf116

Please sign in to comment.