mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
Fix libexecdir/statedir being empty by default
Issue was caused by move to config.Map for global values, config.Map sets to these values to empty strings by default.
This commit is contained in:
parent
bc98fbe98f
commit
2b67435dbf
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ func StateDirectory(globals map[string]interface{}) string {
|
|||
return dir
|
||||
}
|
||||
|
||||
if val, ok := globals["statedir"]; ok {
|
||||
if val, ok := globals["statedir"]; ok && val.(string) != "" {
|
||||
return val.(string)
|
||||
}
|
||||
|
||||
|
@ -31,7 +31,7 @@ func LibexecDirectory(globals map[string]interface{}) string {
|
|||
return dir
|
||||
}
|
||||
|
||||
if val, ok := globals["libexecdir"]; ok {
|
||||
if val, ok := globals["libexecdir"]; ok && val.(string) != "" {
|
||||
return val.(string)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue