Remove double escaping of path with space

This commit is contained in:
Ivan Kravets 2016-09-10 19:09:07 +03:00
parent 9ac89598f1
commit e1f93dc5b9
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ if env.subst("$UPLOAD_PROTOCOL") == "gdb":
join("$BUILD_DIR", "firmware.elf"),
"-batch",
"-x",
'"%s"' % join("$PROJECT_DIR", "upload.gdb")
join("$PROJECT_DIR", "upload.gdb")
],
UPLOADCMD='$UPLOADER $UPLOADERFLAGS'