Skip to content

Commit

Permalink
Fix font installation (attempt 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaProductions committed Aug 12, 2024
1 parent 72c255e commit c57eb63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Rectify11.Phase2/Helper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,11 @@ public static void ImportReg(string path)
proc.StartInfo.Arguments = "import \"" + path + "\"";
proc.StartInfo.CreateNoWindow = true;
proc.Start();
proc.WaitForExit();

if (proc.ExitCode != 0)
{
Console.WriteLine(path + " failed with exit code " +proc.ExitCode);
Console.WriteLine(path + " failed with exit code " + proc.ExitCode);
}
}
catch (Exception ex)
Expand Down

0 comments on commit c57eb63

Please sign in to comment.