Skip to content

Commit

Permalink
fix: adding escape character to the build path in jtag flash command (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sigmaaa authored Dec 17, 2024
1 parent 7e6e096 commit ef6fb5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public static String getEspJtagFlashCommand(ILaunchConfiguration configuration)
{
buildPath = buildPath.substring(1);
}
espFlashCommand = espFlashCommand.replace("<path-to-build-dir>", buildPath); //$NON-NLS-1$
espFlashCommand = espFlashCommand.replace("<path-to-build-dir>", buildPath.replace(" ", "\\ ")); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
catch (CoreException e)
{
Expand Down

0 comments on commit ef6fb5e

Please sign in to comment.