Skip to content

Commit

Permalink
Fix output path argument
Browse files Browse the repository at this point in the history
  • Loading branch information
kostmo committed Nov 20, 2023
1 parent 22f1d23 commit 1c405dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ cliParser =
RenderOpts
<$> seed
<*> flag ConsoleText PngImage (long "png" <> help "Render to PNG")
<*> option auto (long "dest" <> short 'd' <> value "output.png" <> help "Output filepath")
<*> option str (long "dest" <> short 'd' <> value "output.png" <> help "Output filepath")
<*> optional sizeOpts

format :: Parser Input
Expand Down

0 comments on commit 1c405dd

Please sign in to comment.