printing the commandlineparamters when executing dub.

This commit is contained in:
Keywan Ghadami 2015-12-17 14:30:28 +01:00
parent 17195a81f5
commit 136137aad8
1 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,6 @@ class Builder : BackgroundOperationWatcher {
ExternalProcessState state = _extprocess.state; ExternalProcessState state = _extprocess.state;
if (state == ExternalProcessState.None) { if (state == ExternalProcessState.None) {
_log.clear(); _log.clear();
_box.writeText("Running dub\n"d);
char[] program = "dub".dup; char[] program = "dub".dup;
char[][] params; char[][] params;
char[] dir = _project.dir.dup; char[] dir = _project.dir.dup;
@ -116,6 +115,8 @@ class Builder : BackgroundOperationWatcher {
if (_verbose) if (_verbose)
params ~= "-v".dup; params ~= "-v".dup;
auto text = "Running (in " ~ dir ~ "): " ~ program ~ " " ~ params.join(' ') ~ "\n";
_box.writeText(to!dstring(text));
state = _extprocess.run(program, params, dir, _box, null); state = _extprocess.run(program, params, dir, _box, null);
if (state != ExternalProcessState.Running) { if (state != ExternalProcessState.Running) {
_box.writeText("Failed to run builder tool\n"d); _box.writeText("Failed to run builder tool\n"d);