Fix: refusal of creation of non-existent directory tree on plotting
Fixed https://gitlab.com/kicad/code/kicad/-/issues/6394 wxWidgets uses wxFileName::Mkdir to create a directory tree like `mkdir -p`.
This commit is contained in:
parent
0bbb7bdb0c
commit
ef75ce9035
|
@ -307,7 +307,9 @@ bool EnsureFileDirectoryExists( wxFileName* aTargetFullFileName,
|
|||
|
||||
if( !wxFileName::DirExists( outputPath ) )
|
||||
{
|
||||
if( wxMkdir( outputPath ) )
|
||||
// Make every directory provided when the provided path doesn't exist
|
||||
// Fixes GitLab Issue #6394
|
||||
if( wxFileName::Mkdir( outputPath, wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL ) )
|
||||
{
|
||||
if( aReporter )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue