Allow having multiple config files

This commit is contained in:
mjarkk 2021-07-27 22:03:37 +02:00 committed by Jesse Duffield
parent db736896bc
commit 913a2fd065
7 changed files with 137 additions and 65 deletions

View file

@ -61,6 +61,9 @@ func main() {
gitDir := ""
flaggy.String(&gitDir, "g", "git-dir", "equivalent of the --git-dir git argument")
customConfig := ""
flaggy.String(&customConfig, "cf", "config-file", "Comma seperated list to custom config file(s)")
flaggy.Parse()
if repoPath != "" {
@ -72,6 +75,10 @@ func main() {
gitDir = filepath.Join(repoPath, ".git")
}
if customConfig != "" {
os.Setenv("LG_CONFIG_FILE", customConfig)
}
if useConfigDir != "" {
os.Setenv("CONFIG_DIR", useConfigDir)
}