forked from lix-project/hydra
Warn against empty machines file
This commit is contained in:
parent
a2be29377e
commit
a816ef873d
|
@ -133,6 +133,12 @@ void State::parseMachines(const std::string & contents)
|
||||||
newMachines[m.first] = machine;
|
newMachines[m.first] = machine;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool warned = false;
|
||||||
|
if (newMachines.empty() && !warned) {
|
||||||
|
printError("warning: no build machines are defined");
|
||||||
|
warned = true;
|
||||||
|
}
|
||||||
|
|
||||||
auto machines_(machines.lock());
|
auto machines_(machines.lock());
|
||||||
*machines_ = newMachines;
|
*machines_ = newMachines;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue