We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2b0cc3 commit c3a27b4Copy full SHA for c3a27b4
Source/Heavy/OWLExporter.h
@@ -116,8 +116,9 @@ class OWLExporter : public ExporterBase {
116
args.add(path);
117
}
118
119
- exportingView->logToConsole("Command: " + args.joinIntoString(" ") + "\n");
120
- start(args);
+ auto const command = args.joinIntoString(" ");
+ exportingView->logToConsole("Command: " + command + "\n");
121
+ Toolchain::startShellScript(command, this);
122
123
waitForProcessToFinish(-1);
124
exportingView->flushConsole();
0 commit comments