Skip to content

Commit 8860339

Browse files
committed
Add symlinks to shared steps for both remap and cull tasks
1 parent da2db36 commit 8860339

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

polaris/tasks/e3sm/init/topo/cull/task.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ def __init__(
6464
name=f'{mesh_name}_cull_topo_task',
6565
subdir=subdir,
6666
)
67-
self.add_step(base_mesh_step)
68-
self.add_step(combine_topo_step)
69-
self.add_step(remap_mask_step)
70-
self.add_step(unsmoothed_topo_step)
67+
self.add_step(base_mesh_step, symlink='base_mesh')
68+
self.add_step(combine_topo_step, symlink='combine_topo')
69+
self.add_step(remap_mask_step, symlink='remap_mask')
70+
self.add_step(unsmoothed_topo_step, symlink='remap_unsmoothed_topo')
7171
steps, config = get_default_cull_topo_steps(
7272
component=component,
7373
base_mesh_step=base_mesh_step,

polaris/tasks/e3sm/init/topo/remap/task.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ def __init__(
6161
name=f'{mesh_name}_topo_remap_task',
6262
subdir=subdir,
6363
)
64-
self.add_step(base_mesh_step)
65-
self.add_step(combine_topo_step)
64+
self.add_step(base_mesh_step, symlink='base_mesh')
65+
self.add_step(combine_topo_step, symlink='combine_topo')
6666
steps, config = get_default_remap_topo_steps(
6767
component=component,
6868
base_mesh_step=base_mesh_step,

0 commit comments

Comments
 (0)