Skip to content

Commit

Permalink
Update USMT.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
krisdb2009 authored Jun 10, 2024
1 parent b36fda6 commit e0f6c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SuperGrate/Classes/USMT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ private static bool TestUSMTPostExitEnvironment()
bool errorFound = false;
List<string> USMTLog = Logger.Log.GetRange(LogStartIndex, Logger.Log.Count - LogStartIndex);
if (USMTLog.Find((line) => Regex.IsMatch(line, "Successful run")) != null) return true;
if (USMTLog.Find((line) => Regex.IsMatch(line, "migration errors would have been fatal if not for \/c")) != null) return true;
if (USMTLog.Find((line) => Regex.IsMatch(line, "migration errors would have been fatal if not for \\/c")) != null) return true;
if (USMTLog.Find((line) => Regex.IsMatch(line, "An error occurred processing the command line\\.")) != null)
{
errorFound = true;
Expand Down

0 comments on commit e0f6c33

Please sign in to comment.