forked from lix-project/lix
Update src/libutil/util.cc
Co-authored-by: Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com>
This commit is contained in:
parent
25300c0ecd
commit
72e1e23051
|
@ -58,9 +58,7 @@ std::optional<std::string> getEnvNonEmpty(const std::string & key) {
|
|||
auto value = getEnv(key);
|
||||
if (value == "") {
|
||||
// TODO: determine whether this should be a warning or an error.
|
||||
logWarning({
|
||||
.msg = hintfmt("ignoring the '%1%' env variable, its value has been set to \"\"", key)
|
||||
});
|
||||
warn("ignoring the '%1%' env variable, its value has been set to \"\"", key);
|
||||
return std::nullopt;
|
||||
} else {
|
||||
return value;
|
||||
|
|
Loading…
Reference in a new issue