Skip to content

Commit be803de

Browse files
committed
Fix formatting
1 parent 48fa83b commit be803de

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

internal/cli/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ var versionCmd = &cobra.Command{
2424
func init() {
2525
versionCmd.Flags().BoolP("detailed", "d", false, "Show detailed version information")
2626
rootCmd.AddCommand(versionCmd)
27-
}
27+
}

internal/version/version.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ func GetFullVersionInfo() string {
2525
Build time: %s
2626
Git commit: %s
2727
Go version: %s
28-
OS/Arch: %s/%s`,
29-
Version,
30-
BuildTime,
31-
GitCommit,
32-
runtime.Version(),
33-
runtime.GOOS,
28+
OS/Arch: %s/%s`,
29+
Version,
30+
BuildTime,
31+
GitCommit,
32+
runtime.Version(),
33+
runtime.GOOS,
3434
runtime.GOARCH,
3535
)
36-
}
36+
}

0 commit comments

Comments
 (0)