Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
psemiletov committed Sep 19, 2024
1 parent c5429d9 commit 5e61fab
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Source/PluginEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1639,7 +1639,11 @@ void CAudioProcessorEditor::save_quick_kit()

#endif

std::filesystem::create_directories (kit_path);
std::filesystem::path p (kit_path);

//std::filesystem::create_directories (kit_path);
std::filesystem::create_directories (p);


log ("created directory: " + kit_path + "\n");

Expand Down

0 comments on commit 5e61fab

Please sign in to comment.