Skip to content

Commit 68a9772

Browse files
author
Samson
committed
Added .out to output filename
1 parent f148af5 commit 68a9772

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ev3DL/Build.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ private void btnBuild_Click(object sender, EventArgs e)
4545
DialogResult r = folderBrowserDialog1.ShowDialog(this);
4646
if (r == DialogResult.OK)
4747
docpath = folderBrowserDialog1.SelectedPath+"\\";
48-
oname = docpath + oname;
48+
oname = docpath + oname + ".out";
4949
BuildProcess.StartInfo.FileName = @"C:\CSLITE\bin\arm-none-linux-gnueabi-gcc.exe";
5050
string args = string.Format("-I \"C:\\Program Files (x86)\\Ev3DL\\lmsapi\" -static -o \"{0}\" {1} \"{2}\"",oname,includes,tbFile.Text);
5151
BuildProcess.StartInfo.Arguments = args;

0 commit comments

Comments
 (0)