Skip to content

Commit 3fce16d

Browse files
committed
Fix DOT
1 parent f702b0e commit 3fce16d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Regex/Regex/Dot.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static void GenerateSvg(string dotFilePath, string outputSvgPath)
1919
{
2020
var processStartInfo = new ProcessStartInfo
2121
{
22-
FileName = "dot",
22+
FileName = "dot.exe",
2323
Arguments = $"-Tsvg \"{dotFilePath}\" -o \"{outputSvgPath}\"",
2424
RedirectStandardOutput = true,
2525
RedirectStandardError = true,

0 commit comments

Comments
 (0)