Skip to content

Commit

Permalink
Merge pull request #291 from NOAA-GFDL/singhd789-patch-1
Browse files Browse the repository at this point in the history
Fix create_makefile_script.py location message for container build
  • Loading branch information
ilaflott authored Dec 16, 2024
2 parents 121b45c + 2b172bb commit a42e499
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fre/make/create_makefile_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def makefile_create(yamlfile,platform,target):
else:
image="ecpe4s/noaa-intel-prototype:2023.09.25"
bldDir = platform["modelRoot"] + "/" + fremakeYaml["experiment"] + "/exec"
tmpDir = "tmp/"+platformName
tmpDir = "./tmp/"+platformName
freMakefile = makefilefre.makefileContainer(exp = fremakeYaml["experiment"],
libs = fremakeYaml["container_addlibs"],
srcDir = srcDir,
Expand All @@ -75,7 +75,7 @@ def makefile_create(yamlfile,platform,target):
for c in fremakeYaml['src']:
freMakefile.addComponent(c['component'],c['requires'],c['makeOverrides'])
freMakefile.writeMakefile()
click.echo("\nMakefile created at " + bldDir + "/Makefile" + "\n")
click.echo("\nMakefile created at " + tmpDir + "/Makefile" + "\n")

@click.command()
def _makefile_create(yamlfile,platform,target):
Expand Down

0 comments on commit a42e499

Please sign in to comment.