We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ee364d commit 1c313c5Copy full SHA for 1c313c5
1 file changed
src/lime/extension/Main.hx
@@ -866,6 +866,21 @@ class Main
866
}
867
868
var targetItem = getTargetItem();
869
+ var commandLine = limeExecutable + " " + getCommandArguments("display", targetItem);
870
+ var additionalArgs = getDebugArguments(targetItem, null);
871
+ if (additionalArgs != null) commandLine += " " + additionalArgs.join(" ");
872
+ commandLine += " --output-file";
873
+ commandLine = StringTools.replace(commandLine, "-verbose", "");
874
+
875
+ try
876
+ {
877
+ var output = ChildProcess.execSync(commandLine, {cwd: workspace.workspaceFolders[0].uri.fsPath});
878
+ outputFile = StringTools.trim(Std.string(output));
879
+ }
880
+ catch (e:Dynamic)
881
882
+ trace(e);
883
884
885
if (!Reflect.hasField(config, "preLaunchTask"))
886
{
0 commit comments