Skip to content

Commit c3a27b4

Browse files
committed
use correct shell execution
1 parent b2b0cc3 commit c3a27b4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Source/Heavy/OWLExporter.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,9 @@ class OWLExporter : public ExporterBase {
116116
args.add(path);
117117
}
118118

119-
exportingView->logToConsole("Command: " + args.joinIntoString(" ") + "\n");
120-
start(args);
119+
auto const command = args.joinIntoString(" ");
120+
exportingView->logToConsole("Command: " + command + "\n");
121+
Toolchain::startShellScript(command, this);
121122

122123
waitForProcessToFinish(-1);
123124
exportingView->flushConsole();

0 commit comments

Comments
 (0)