1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-31 23:19:40 +02:00

Add helpful message on unmarshall error

This commit is contained in:
Luka Markušić 2022-05-28 17:23:14 +02:00
parent 8fd9dea641
commit abeb03b090

View File

@ -1,6 +1,7 @@
package config package config
import ( import (
"fmt"
"io/ioutil" "io/ioutil"
"os" "os"
"path/filepath" "path/filepath"
@ -167,7 +168,7 @@ func loadUserConfig(configFiles []string, base *UserConfig) (*UserConfig, error)
} }
if err := yaml.Unmarshal(content, base); err != nil { if err := yaml.Unmarshal(content, base); err != nil {
return nil, err return nil, fmt.Errorf("The config at `%s` couldn't be parsed, please inspect it before opening up an issue.", path)
} }
} }