Skip to content

Commit dd12085

Browse files
authored
Merge pull request #107 from mattn/windows
Support Windows colors
2 parents 3bb3601 + bcacd0a commit dd12085

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

cmd/root.go

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ package cmd
66

77
import (
88
"github.com/AlecAivazis/survey/v2"
9+
"github.com/create-go-app/cli/v3/pkg/cgapp"
910
"github.com/create-go-app/cli/v3/pkg/registry"
1011
"github.com/spf13/cobra"
1112
)
@@ -48,6 +49,11 @@ frontend (JavaScript, TypeScript) and deploy automation
4849
A helpful documentation and next steps -> https://create-go.app/`,
4950
}
5051

52+
func init() {
53+
rootCmd.SetOut(cgapp.Stdout)
54+
rootCmd.SetErr(cgapp.Stderr)
55+
}
56+
5157
// Execute adds all child commands to the root command and sets flags appropriately.
5258
// This is called by main.main(). It only needs to happen once to the rootCmd.
5359
func Execute() {

pkg/cgapp/utils.go

+9-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,15 @@ package cgapp
77
import (
88
"fmt"
99
"time"
10+
11+
"github.com/mattn/go-colorable"
12+
)
13+
14+
var (
15+
Stdout = colorable.NewColorableStdout()
16+
Stderr = colorable.NewColorableStderr()
1017
)
1118

12-
// ShowMessage function for send message to output.
1319
func ShowMessage(level, text string, startWithNewLine, endWithNewLine bool) {
1420
// Define variables.
1521
var startLine, endLine string
@@ -22,12 +28,12 @@ func ShowMessage(level, text string, startWithNewLine, endWithNewLine bool) {
2228
endLine = "\n" // set a new line
2329
}
2430

25-
fmt.Println(startLine + colorizeLevel(level) + text + endLine)
31+
fmt.Fprintln(Stdout, startLine+colorizeLevel(level)+text+endLine)
2632
}
2733

2834
// ShowError function for send error message to output.
2935
func ShowError(text string) error {
30-
return fmt.Errorf(colorizeLevel("error") + text)
36+
return fmt.Errorf("%s", colorizeLevel("error")+text)
3137
}
3238

3339
// CalculateDurationTime func to calculate duration time.

0 commit comments

Comments
 (0)