read without config fixed
This commit is contained in:
parent
700c55f115
commit
47118c9ff5
|
@ -43,7 +43,7 @@ func main() {
|
||||||
before := func(*cli.Context) error {
|
before := func(*cli.Context) error {
|
||||||
gopath := os.Getenv("GOPATH")
|
gopath := os.Getenv("GOPATH")
|
||||||
if gopath == "" {
|
if gopath == "" {
|
||||||
return errors.New("$GOPATH isn't set up properly")
|
return errors.New("$GOPATH isn't set properly")
|
||||||
}
|
}
|
||||||
|
|
||||||
r = realize{
|
r = realize{
|
||||||
|
@ -563,7 +563,7 @@ func main() {
|
||||||
},
|
},
|
||||||
Quest: interact.Quest{
|
Quest: interact.Quest{
|
||||||
Options: style.Yellow.Regular("[y/n]"),
|
Options: style.Yellow.Regular("[y/n]"),
|
||||||
Msg: "Customize the watched paths",
|
Msg: "Customize watched paths",
|
||||||
Resolve: func(d interact.Context) bool {
|
Resolve: func(d interact.Context) bool {
|
||||||
val, _ := d.Ans().Bool()
|
val, _ := d.Ans().Bool()
|
||||||
if val {
|
if val {
|
||||||
|
@ -608,7 +608,7 @@ func main() {
|
||||||
},
|
},
|
||||||
Quest: interact.Quest{
|
Quest: interact.Quest{
|
||||||
Options: style.Yellow.Regular("[y/n]"),
|
Options: style.Yellow.Regular("[y/n]"),
|
||||||
Msg: "Customize the ignored paths",
|
Msg: "Customize ignored paths",
|
||||||
Resolve: func(d interact.Context) bool {
|
Resolve: func(d interact.Context) bool {
|
||||||
val, _ := d.Ans().Bool()
|
val, _ := d.Ans().Bool()
|
||||||
if val {
|
if val {
|
||||||
|
|
|
@ -54,7 +54,7 @@ func (s *Settings) Read(out interface{}) error {
|
||||||
err = yaml.Unmarshal(content, out)
|
err = yaml.Unmarshal(content, out)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return err
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Record create and unmarshal the yaml config file
|
// Record create and unmarshal the yaml config file
|
||||||
|
|
Loading…
Reference in New Issue