1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 22:34:09 +02:00

Fixed verbosity option

This commit is contained in:
Brian Fiete 2019-09-07 07:09:33 -07:00
parent c7d2c16a22
commit b1720508ec

View file

@ -155,8 +155,10 @@ namespace BeefBuild
mVerbosity = .Normal; mVerbosity = .Normal;
else if (value == "detailed") else if (value == "detailed")
mVerbosity = .Detailed; mVerbosity = .Detailed;
//else if (value == "diagnostic") else if (value == "diagnostic")
//mVerbosity = .Diagnostic; mVerbosity = .Diagnostic;
else
Fail(scope String()..AppendF("Invalid verbosity option: {}", value));
return true; return true;
} }
} }