Skip to content

Commit 0e46a87

Browse files
committed
Revert "fix: Add new parameter to dot command."
This reverts commit 7a300f5.
1 parent 345042b commit 0e46a87

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/Exporter/Image.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,10 @@ public function setFormat(string $format): self
8686
private function getConvertCommand(string $path): string
8787
{
8888
return sprintf(
89-
'%s -T%s %s -o%s.%s',
89+
'%s -T%s %s',
9090
$this->getExecutable(),
9191
$this->getFormat(),
92-
$path,
93-
$path,
94-
$this->getFormat()
92+
$path
9593
);
9694
}
9795
}

0 commit comments

Comments
 (0)