Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
marinerhemant committed Dec 10, 2024
1 parent 1f77dd7 commit 25a3895
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions FF_HEDM/v7/ff_MIDAS.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,8 @@ def error(self, message):
env['LD_LIBRARY_PATH'] = f'{midas_path}/BLOSC/lib64:{midas_path}/FFTW/lib:{midas_path}/HDF5/lib:{midas_path}/LIBTIFF/lib:{midas_path}/LIBZIP/lib64:{midas_path}/NLOPT/lib:{midas_path}/ZLIB/lib:{libpth}'
if len(resultDir) == 0 or resultDir=='.':
resultDir = os.getcwd()
if resultDir[0] == '~':
resultDir = os.path.expanduser(resultDir)
if resultDir[0] != '/':
resultDir = os.getcwd() + '/' + resultDir
logDir = resultDir + '/output'
Expand Down

0 comments on commit 25a3895

Please sign in to comment.