We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 296c547 commit fd873eaCopy full SHA for fd873ea
1 file changed
lfric_macros/apply_macros.py
@@ -1092,7 +1092,11 @@ def apps_to_upgrade(self) -> list[Path]:
1092
for app_path in apps_list:
1093
# Ignore lfric_coupled_rivers as this is based on Jules-standalone
1094
# metadata which is not currently available
1095
- if "fcm_make" in str(app_path) or "lfric_coupled_rivers" in str(app_path):
+ if (
1096
+ "fcm_make" in str(app_path)
1097
+ or "lfric_coupled_rivers" in str(app_path)
1098
+ or "coupled_rivers" in str(app_path)
1099
+ ):
1100
continue
1101
if not app_path.is_dir():
1102
0 commit comments