From 9cec29c4d12f6ff5e17c82c7d3af839202cd5927 Mon Sep 17 00:00:00 2001 From: Tomachi <8929706+book000@users.noreply.github.com> Date: Thu, 14 Nov 2024 02:27:50 +0900 Subject: [PATCH] fix: update default config file path to data/config.yaml (#14) --- cmd/splashscreen-changer/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/splashscreen-changer/main.go b/cmd/splashscreen-changer/main.go index a2f7771..5db5466 100644 --- a/cmd/splashscreen-changer/main.go +++ b/cmd/splashscreen-changer/main.go @@ -138,7 +138,7 @@ func printHelp() { fmt.Println("Options:") flag.PrintDefaults() fmt.Println("Environment Variables:") - fmt.Printf(" %-20s %s\n", "CONFIG_PATH", "Path to the configuration file (default: config.yaml)") + fmt.Printf(" %-20s %s\n", "CONFIG_PATH", "Path to the configuration file (default: data/config.yaml)") // Config 構造体のフィールドから環境変数のキーを生成して表示 configType := reflect.TypeOf(Config{}) @@ -178,10 +178,10 @@ func main() { return } - // 設定ファイルを読み込む。設定ファイルパスは環境変数 CONFIG_PATH で指定し、指定されていない場合は "config.yaml" とする。 + // 設定ファイルを読み込む。設定ファイルパスは環境変数 CONFIG_PATH で指定し、指定されていない場合は "data/config.yaml" とする。 configPath := os.Getenv("CONFIG_PATH") if configPath == "" { - configPath = "config.yaml" + configPath = "data/config.yaml" } config, err := LoadConfig(configPath) if err != nil {