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:
parent
9dc0bb2c89
commit
41ef767676
@ -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 );
|
||||
|
@ -244,8 +244,6 @@ public:
|
||||
*/
|
||||
wxString GetFullOutputPath( PROJECT* aProject ) const;
|
||||
|
||||
bool OutputPathFullSpecified() const;
|
||||
|
||||
bool GetOutputPathIsDirectory() const { return m_outputPathIsDirectory; }
|
||||
|
||||
protected:
|
||||
|
@ -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 )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user