Skip to content

Commit

Permalink
fix path is null (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
kooksee authored Dec 9, 2024
1 parent f0734d8 commit e1c6917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func getPathList() (paths []string) {
}

func SetConfigPath(confPath string) {
assert.If(configPath == "", "config path is null")
assert.If(confPath == "", "config path is null")
configPath = confPath
}

Expand Down

0 comments on commit e1c6917

Please sign in to comment.