only:usability

This commit is contained in:
rusEFI LLC 2025-02-13 16:50:33 -05:00
parent a030bbf216
commit 993a649234
1 changed files with 3 additions and 1 deletions

View File

@ -132,7 +132,9 @@ public class TuneCanTool {
StringBuilder sb = getTunePatch(defaultTune, customTune, ini, customTuneFileName, methods, defaultTuneFileName, methodNamePrefix);
String fileNameMethods = ENGINE_TUNE_OUTPUT_FOLDER + REPORTS_OUTPUT_FOLDER + "/" + vehicleName + "_methods.md";
String folder = ENGINE_TUNE_OUTPUT_FOLDER + REPORTS_OUTPUT_FOLDER;
new File(folder).mkdirs();
String fileNameMethods = folder + "/" + vehicleName + "_methods.md";
try (FileWriter methodsWriter = new FileWriter(fileNameMethods)) {
methodsWriter.append(MD_FIXED_FORMATTING);
methodsWriter.append(methods);