Changed: Display a warning when a environment variable doesn't exist

This commit is contained in:
kervala 2016-02-13 23:30:18 +01:00
parent c98bf02cb0
commit daa42945b3

View file

@ -1033,6 +1033,7 @@ std::string expandEnvironmentVariables(const std::string &s)
{ {
// value not found // value not found
found = false; found = false;
nlwarning("Environment variable '%s' not found, won't be replaced", name.c_str());
} }
} }