Skip to content

Commit

Permalink
Update cime path for Tools, fixing ESCOMP#54
Browse files Browse the repository at this point in the history
  • Loading branch information
ekluzek committed Nov 12, 2022
1 parent 3a63547 commit 3098c13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cime_config/buildlib
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import os, sys
CIMEROOT = os.environ.get("CIMEROOT")
if CIMEROOT is None:
raise SystemExit("ERROR: must set CIMEROOT environment variable")
sys.path.append(os.path.join(CIMEROOT, "scripts", "Tools"))
sys.path.append(os.path.join(CIMEROOT, "scripts", "CIME", "Tools"))

from standard_script_setup import *
from CIME.case import Case
Expand Down
2 changes: 1 addition & 1 deletion cime_config/buildnml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import os, shutil, sys
CIMEROOT = os.environ.get("CIMEROOT")
if CIMEROOT is None:
raise SystemExit("ERROR: must set CIMEROOT environment variable")
sys.path.append(os.path.join(CIMEROOT, "scripts", "Tools"))
sys.path.append(os.path.join(CIMEROOT, "scripts", "CIME", "Tools"))

from standard_script_setup import *
from CIME.case import Case
Expand Down

0 comments on commit 3098c13

Please sign in to comment.