7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-05 00:15:30 +00:00

Tweak the odb job pathing again

This commit is contained in:
Marek Roszko 2025-01-14 20:50:39 -05:00
parent 9dc0bb2c89
commit 41ef767676
3 changed files with 2 additions and 18 deletions

View File

@ -149,20 +149,6 @@ void JOB::SetConfiguredOutputPath( const wxString& aPath )
}
bool JOB::OutputPathFullSpecified() const
{
if( m_outputPath.IsEmpty() )
return false;
wxFileName fn( m_outputPath );
if( m_outputPathIsDirectory )
return fn.IsDir();
else
return !fn.IsDir();
}
KICOMMON_API void to_json( nlohmann::json& j, const JOB& f )
{
f.ToJson( j );

View File

@ -244,8 +244,6 @@ public:
*/
wxString GetFullOutputPath( PROJECT* aProject ) const;
bool OutputPathFullSpecified() const;
bool GetOutputPathIsDirectory() const { return m_outputPathIsDirectory; }
protected:

View File

@ -1855,7 +1855,7 @@ int PCBNEW_JOBS_HANDLER::JobExportIpc2581( JOB* aJob )
aJob->SetTitleBlock( brd->GetTitleBlock() );
if( !job->OutputPathFullSpecified() )
if( job->GetConfiguredOutputPath().IsEmpty() )
{
wxFileName fn = brd->GetFileName();
fn.SetName( fn.GetName() );
@ -1952,7 +1952,7 @@ int PCBNEW_JOBS_HANDLER::JobExportOdb( JOB* aJob )
wxString path = job->GetConfiguredOutputPath();
if( !job->OutputPathFullSpecified() )
if( job->GetConfiguredOutputPath().IsEmpty() )
{
if( job->m_compressionMode == JOB_EXPORT_PCB_ODB::ODB_COMPRESSION::NONE )
{