Skip to content

Commit

Permalink
fix: update default config file path to data/config.yaml (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
book000 authored Nov 13, 2024
1 parent 40f52e0 commit 9cec29c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/splashscreen-changer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{})
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 9cec29c

Please sign in to comment.