Skip to content

Commit

Permalink
Merge branch 'NHERI-SimCenter:master' into brails-buildings_widget
Browse files Browse the repository at this point in the history
  • Loading branch information
bacetiner authored Aug 18, 2024
2 parents 090b90e + f8a41d6 commit e71b18c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions modules/Workflow/MultiModelDriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,14 +162,16 @@ def main(inputFile, driverFile, appKey, registryFile, appDir, runType, osType):
'UTF-8',
)
)
elif osType == 'Windows' and runType == 'runningRemote':
elif runType == 'runningRemote':
with open(driverFile, 'wb') as f: # noqa: PTH123
f.write(
appDir
+ '/applications/Workflow/'
+ exeFileName
+ f' {paramsFileName} {driverFile} {multiModelString}',
'UTF-8',
bytes(
appDir
+ '/applications/Workflow/'
+ exeFileName
+ f' {paramsFileName} {driverFile} {multiModelString}',
'UTF-8',
)
)
else:
with open(driverFile, 'wb') as f: # noqa: PTH123
Expand Down

0 comments on commit e71b18c

Please sign in to comment.