We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4db4a9a commit ea0f01aCopy full SHA for ea0f01a
nanoFirmwareFlasher/EspTool.cs
@@ -580,7 +580,7 @@ private bool RunEspTool(
580
appDir = Path.Combine(Program.ExecutingPath, "esptool", "esptoolLinux");
581
Process espToolExex = new Process();
582
// Making sure the esptool is executable
583
- espToolExex.StartInfo = new ProcessStartInfo("chmod +x", Path.Combine(appDir, appName))
+ espToolExex.StartInfo = new ProcessStartInfo("chmod", $"+x {Path.Combine(appDir, appName)}")
584
{
585
WorkingDirectory = appDir,
586
UseShellExecute = false,
0 commit comments