Skip to content

Commit

Permalink
Minor...
Browse files Browse the repository at this point in the history
  • Loading branch information
slavara committed Apr 13, 2016
1 parent 784b598 commit 7643a66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AntPanel/PluginMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public void RemoveBuildFile(string file)
public void RunTarget(string file, string target)
{
var antPath = ((Settings)Settings).AntPath;
var command = PluginBase.MainForm.CommandPromptExecutable ?? Path.Combine(Environment.SystemDirectory, "cmd.exe");
var command = /*PluginBase.MainForm.CommandPromptExecutable ??*/ Path.Combine(Environment.SystemDirectory, "cmd.exe");
var arguments = "/c ";
if (string.IsNullOrEmpty(antPath)) arguments += "ant";
else arguments += Path.Combine(Path.Combine(antPath, "bin"), "ant");
Expand Down

0 comments on commit 7643a66

Please sign in to comment.