Skip to content

Commit 1b0c94e

Browse files
committed
build_all.d: Handle quoted/glob source locations when NoVagrant
1 parent 209743e commit 1b0c94e

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

create_dmd_release/build_all.d

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ struct Box
138138
{
139139
if (src.startsWith("default:"))
140140
src = _tmpdir ~ "/" ~ src[8..$];
141+
else if (src.startsWith("'default:"))
142+
src = "'" ~ _tmpdir ~ "/" ~ src[9..$];
141143
if (tgt.startsWith("default:"))
142144
tgt = _tmpdir ~ "/" ~ tgt[8..$];
143145

0 commit comments

Comments
 (0)