We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c98d10e commit c99ed5bCopy full SHA for c99ed5b
1 file changed
Rubjerg.Graphviz/GraphvizCommand.cs
@@ -45,7 +45,7 @@ internal static string Rid
45
];
46
return possibleLocations.Select(dir => Path.Combine(dir, "dot")).FirstOrDefault(File.Exists)
47
?? possibleLocations.Select(dir => Path.Combine(dir, "dot.exe")).FirstOrDefault(File.Exists)
48
- ?? throw new InvalidOperationException("Could not find path to dot binary");
+ ?? throw new InvalidOperationException("Could not find path to dot binary in any of: " + string.Join(", ", possibleLocations));
49
});
50
internal static string DotExePath => _DotExePath.Value;
51
0 commit comments