Skip to content

Commit

Permalink
Merge branch 'develop' into feature/narnold1/#560-shocmf-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
narnold1 committed Jan 9, 2024
2 parents 67754ec + dead05d commit da496ff
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1228,7 +1228,8 @@ subroutine SetServices ( GC, RC )
'REV_LS ', 'REV_AN ', 'REV_CN ', 'TPREC ', &
'Q ', 'DQDT ', 'DQRL ', 'DQRC ', &
'CNV_MFC ', 'CNV_MFD ', 'CNV_CVW ', 'CNV_FRC ', &
'LFR_GCC ', 'RH2 ', 'CN_PRCP ' /), &
'LFR_GCC ', 'RH2 ', 'CN_PRCP ', &
'BYNCY ', 'CAPE ', 'INHB ' /), &
DST_ID = CHEM, &
SRC_ID = MOIST, &
RC=STATUS )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
def make_bcs_cube(config):

bin_dir = os.getcwd()
if 'install/bin' not in bin_dir:
if '/bin' not in bin_dir:
print(" please run this program in installed bin directory")
return
grid_type = config['grid_type']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

def make_bcs_ease(config):
bin_dir = os.getcwd()
if 'install/bin' not in bin_dir:
if '/bin' not in bin_dir:
print("please run this program in installed bin directory")
return

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

def make_bcs_latlon(config):
bin_dir = os.getcwd()
if 'install/bin' not in bin_dir:
if '/bin' not in bin_dir:
print(" please run this program in installed bin directory")
return

Expand Down

0 comments on commit da496ff

Please sign in to comment.