Utility now uses named pipe if passed --pipe. Installing mods now works properly too.
This commit is contained in:
committed by
Paul Chote
parent
da384af339
commit
0c319e88c3
@@ -22,5 +22,17 @@ namespace OpenRA.Launcher
|
||||
b.FlatStyle = FlatStyle.System;
|
||||
SendMessage(b.Handle, BCM_SETSHIELD, 0, 0xFFFFFFFF);
|
||||
}
|
||||
|
||||
static public bool IsError(ref string utilityResponseLine)
|
||||
{
|
||||
utilityResponseLine = utilityResponseLine.Trim('\r', '\n');
|
||||
if (utilityResponseLine.StartsWith("Error:"))
|
||||
{
|
||||
utilityResponseLine = utilityResponseLine.Remove(0, 7);
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user