From 2b67435dbfc7a17193aad2e4a04d9d793575c0ee Mon Sep 17 00:00:00 2001 From: "fox.cpp" Date: Mon, 6 May 2019 02:21:24 +0300 Subject: [PATCH] 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. --- directories.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/directories.go b/directories.go index 31ec21c..bb79a0f 100644 --- a/directories.go +++ b/directories.go @@ -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) }