Commit b541bac3 authored by pixhawk's avatar pixhawk

Fixed a bug in MAVLink generation

parent 5ccdc6bd
...@@ -255,7 +255,7 @@ bool MAVLinkXMLParser::generate() ...@@ -255,7 +255,7 @@ bool MAVLinkXMLParser::generate()
QString messagesDirName = "generated"; QString messagesDirName = "generated";
QDir dir(outputDirName + "/" + messagesDirName); QDir dir(outputDirName + "/" + messagesDirName);
// Create directory if it doesn't exist, report result in success // Create directory if it doesn't exist, report result in success
if (!dir.exists()) success = success && dir.mkdir(outputDirName); if (!dir.exists()) success = success && dir.mkpath(outputDirName + "/" + messagesDirName);
for (int i = 0; i < cFiles.size(); i++) for (int i = 0; i < cFiles.size(); i++)
{ {
QFile rawFile(dir.filePath(cFiles.at(i).first)); QFile rawFile(dir.filePath(cFiles.at(i).first));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment