Skip to content

Commit

Permalink
Merge pull request #870 from GEOS-ESM/feature/wjiang/intallation_path
Browse files Browse the repository at this point in the history
run make_bcs in different installation path
  • Loading branch information
sdrabenh authored Dec 21, 2023
2 parents d5d9ed7 + a8ae04c commit dead05d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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 dead05d

Please sign in to comment.