From f0408f08149572eba4d54c40afe553873ce33f07 Mon Sep 17 00:00:00 2001 From: Marek Roszko <mark.roszko@gmail.com> Date: Wed, 25 Dec 2024 10:05:07 -0500 Subject: [PATCH] Allow empty path targets to just return the temp dir for jobset output --- common/jobs/job.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/common/jobs/job.cpp b/common/jobs/job.cpp index 54af58eafa..9fb446d1f4 100644 --- a/common/jobs/job.cpp +++ b/common/jobs/job.cpp @@ -106,11 +106,10 @@ wxString JOB::GetFullOutputPath() const else { wxFileName fn( m_outputPath ); - if( fn.IsAbsolute() || m_outputPath.IsEmpty() ) + if( fn.IsAbsolute() ) { // uhhh, do nothing - // either its a full path passed by cli, so we return as-is - // or it's a empty path from either...in which case things will fail but who cares + // its a full path passed by cli, so we return as-is // the job handlers should have fixed empty paths } else