summaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/main.go b/main.go
index 67d6e8287..02088b5bd 100644
--- a/main.go
+++ b/main.go
@@ -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)
}