mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-12 05:14:10 +02:00
Fixed ability to cancel downloads
This commit is contained in:
parent
43c82515fe
commit
d26e2957b0
7 changed files with 82 additions and 17 deletions
|
@ -6292,6 +6292,8 @@ namespace IDE
|
|||
mVerbosity = .Detailed;
|
||||
else if (value == "diagnostic")
|
||||
mVerbosity = .Diagnostic;
|
||||
else
|
||||
Fail(scope String()..AppendF("Invalid verbosity option: {}", value));
|
||||
case "-workspace","-proddir":
|
||||
var relDir = scope String(value);
|
||||
if ((relDir.EndsWith("\\")) || relDir.EndsWith("\""))
|
||||
|
@ -10465,7 +10467,7 @@ namespace IDE
|
|||
bool isOutput = (cmd == "msg") || (cmd == "dbgEvalMsg") || (cmd == "log");
|
||||
if (cmd == "msgLo")
|
||||
{
|
||||
if (mVerbosity <= .Diagnostic)
|
||||
if (mVerbosity < .Diagnostic)
|
||||
continue;
|
||||
isOutput = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue