Skip to content

Commit

Permalink
Merge pull request #68 from MartinNowak/verboseBuilds
Browse files Browse the repository at this point in the history
run create_dmd_release in verbose mode
  • Loading branch information
AndrewEdwards committed Feb 22, 2014
1 parent 7a1e35b commit d9c98db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions create_dmd_release/build_all.d
Expand Up @@ -256,14 +256,14 @@ void runBuild(Box box, string gitTag, bool combine)
break;
}

auto cmd = rdmd~" create_dmd_release --extras=extraBins --archive --use-clone=clones";
auto cmd = rdmd~" create_dmd_release -v --extras=extraBins --archive --use-clone=clones";
if (box._model != Model._both)
cmd ~= " --only-" ~ box.modelS;
cmd ~= " " ~ gitTag;

sh.exec(cmd);
if (combine)
sh.exec(rdmd~" create_dmd_release --extras=extraBins --combine --use-clone=clones "~gitTag);
sh.exec(rdmd~" create_dmd_release -v --extras=extraBins --combine --use-clone=clones "~gitTag);

sh.close();
// copy out created zip files
Expand Down

0 comments on commit d9c98db

Please sign in to comment.