Skip to content

Commit

Permalink
LDC: Fix ddox regression (prevent colliding HTML output files)
Browse files Browse the repository at this point in the history
  • Loading branch information
kinke authored and Geod24 committed Jan 24, 2025
1 parent 8fda5c3 commit 4a69bd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/dub/compilers/ldc.d
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class LDCCompiler : Compiler {
tuple(BuildOption.color, ["-enable-color"]),

tuple(BuildOption._docs, ["-Dd=docs"]),
tuple(BuildOption._ddox, ["-Xf=docs.json", "-Dd=__dummy_docs"]),
tuple(BuildOption._ddox, ["-Xf=docs.json", "-Dd=__dummy_docs", "-oq"]),
];

@property string name() const { return "ldc"; }
Expand Down

0 comments on commit 4a69bd4

Please sign in to comment.