Skip to content

Commit

Permalink
Merge pull request #856 from danielpeter/devel
Browse files Browse the repository at this point in the history
submodule update and travis fix
  • Loading branch information
danielpeter authored Nov 20, 2024
2 parents 1214e1c + 6debda8 commit 19dfaf2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ compiler: gcc
# deprecated
#sudo: required

# turns off submodule fetching by default
git:
submodules: false

env:
global:
- FC=gfortran
Expand Down
2 changes: 1 addition & 1 deletion m4
Submodule m4 updated 1 files
+1 −1 cit_numpy.m4
6 changes: 3 additions & 3 deletions src/shared/read_parameter_file.F90
Original file line number Diff line number Diff line change
Expand Up @@ -245,11 +245,11 @@ subroutine read_parameter_file()
call read_value_logical(OUTPUT_SEISMOS_SAC_BINARY, 'OUTPUT_SEISMOS_SAC_BINARY', ier)
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_SEISMOS_SAC_BINARY'
call read_value_logical(OUTPUT_SEISMOS_ASDF, 'OUTPUT_SEISMOS_ASDF', ier)
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_HDF5'
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_SEISMOS_ASDF'
call read_value_logical(OUTPUT_SEISMOS_3D_ARRAY, 'OUTPUT_SEISMOS_3D_ARRAY', ier)
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_ASDF'
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_SEISMOS_3D_ARRAY'
call read_value_logical(OUTPUT_SEISMOS_HDF5, 'OUTPUT_SEISMOS_HDF5', ier)
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_3D_ARRAY'
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_SEISMOS_HDF5'
call read_value_logical(ROTATE_SEISMOGRAMS_RT, 'ROTATE_SEISMOGRAMS_RT', ier)
if (ier /= 0) stop 'an error occurred while reading the parameter file: ROTATE_SEISMOGRAMS_RT'
call read_value_logical(WRITE_SEISMOGRAMS_BY_MAIN, 'WRITE_SEISMOGRAMS_BY_MAIN', ier)
Expand Down

0 comments on commit 19dfaf2

Please sign in to comment.