From 7786ea1d58316e12b9adfe5202c5a46710502f27 Mon Sep 17 00:00:00 2001 From: Arsen Musayelyan Date: Tue, 24 Aug 2021 08:55:22 -0700 Subject: [PATCH] Fix debug config paths --- config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 5a3bf22..1078a25 100644 --- a/config.go +++ b/config.go @@ -15,8 +15,8 @@ func init() { // Set config settings setCfgDefaults() - viper.AddConfigPath("$HOME/.cmonfig") - viper.AddConfigPath("/etoc") + viper.AddConfigPath("$HOME/.config") + viper.AddConfigPath("/etc") viper.SetConfigName("itd") viper.SetConfigType("toml") viper.WatchConfig()