From b1a494b9bef18c2b0af25dbc2890cab39f7343f6 Mon Sep 17 00:00:00 2001 From: Martin Nowak Date: Sat, 9 Nov 2013 19:33:40 +0100 Subject: [PATCH] shell glob must not be quoted --- source/dub/dub.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dub/dub.d b/source/dub/dub.d index c62ca0f85..55794b087 100644 --- a/source/dub/dub.d +++ b/source/dub/dub.d @@ -403,7 +403,7 @@ class Dub { if (!run) { commands ~= dub_path~"ddox generate-html --navigation-type=ModuleTree docs.json docs"; version(Windows) commands ~= "xcopy /S /D "~dub_path~"public\\* docs\\"; - else commands ~= "cp -r \""~dub_path~"public/*\" docs/"; + else commands ~= "cp -r \""~dub_path~"public\"/* docs/"; } runCommands(commands);