Skip to content

Commit 2065a7b

Browse files
committed
abs - fixing the run_dir path to support running remotely
1 parent 4656fcd commit 2065a7b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

modules/performUQ/SimCenterUQ/runPLoM.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ def _run_simulation(self): # noqa: C901
179179
pass
180180

181181
# move into the templatedir
182-
run_dir = job_config.get('runDir', os.getcwd()) # noqa: PTH109
182+
# run_dir = job_config.get('runDir', os.getcwd())
183+
run_dir = self.work_dir # ABS - using the run directory consistently
183184
os.chdir(run_dir)
184185
# training is done for single building (for now)
185186
bldg_id = None

0 commit comments

Comments
 (0)