diff --git a/source/dub/dub.d b/source/dub/dub.d index f072f2b..997cdf1 100644 --- a/source/dub/dub.d +++ b/source/dub/dub.d @@ -430,7 +430,7 @@ if (filterargs.empty) filterargs = ["--min-protection=Protected", "--only-documented"]; commands ~= dub_path~"ddox filter "~filterargs.join(" ")~" docs.json"; commands ~= dub_path~"ddox generate-html --navigation-type=ModuleTree docs.json docs"; - version(Windows) commands ~= "xcopy /S /D \""~dub_path~"public\\*\" docs\\"; + version(Windows) commands ~= "xcopy /S /D "~dub_path~"public\\* docs\\"; else commands ~= "cp -r \""~dub_path~"public/*\" docs/"; runCommands(commands); }