bump go version and fix invalid nil assignment

This commit is contained in:
2023-05-06 16:00:24 -07:00
parent 97c2e898fc
commit 28f0329d4a
2 changed files with 5 additions and 2 deletions

View File

@@ -46,7 +46,10 @@ func LoadMRConfig() (MRConfig, error) {
}
text := string(f)
lines := strings.Split(text, "\n")
config := MRConfig{}
config := MRConfig{
Aliases: make(map[string]string),
Repos: []Repo{},
}
length := -1
mode := "default"