Skip to content

Commit

Permalink
Remove trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
kuanchihwang committed Jan 17, 2025
1 parent be4d6b6 commit 016db43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cime_config/buildlib
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def _build_cam():
makefile = os.path.join(casetools, "Makefile")

cmd = f"{gmake} complib -j {gmake_j} MODEL=cam COMPLIB={complib}"
cmd += f" -f {makefile} {get_standard_makefile_args(case)} "
cmd += f" -f {makefile} {get_standard_makefile_args(case)}"

# Add C Pre-Processor (CPP) definitions, if present:
if config.cpp_defs:
Expand All @@ -174,7 +174,7 @@ def _build_cam():
cmd += " OPTIONAL_MPAS_FEATURES=\"" + " ".join(optional_mpas_features) + "\""

retcode, out, err = run_cmd(cmd)
_LOGGER.info("%s: \n\n output:\n %s \n\n err:\n\n%s\n", cmd, out, err)
_LOGGER.info("Command %s:\n\nstdout:\n%s\n\nstderr:\n%s\n", cmd, out, err)
expect(retcode == 0, f"Command {cmd} failed with rc={retcode}")

def _prepare_mpas(case: Case) -> None:
Expand Down

0 comments on commit 016db43

Please sign in to comment.