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 85543b5 commit d21b5ddCopy full SHA for d21b5dd
1 file changed
lfric_macros/validate_rose_meta.py
@@ -215,14 +215,16 @@ def main():
215
)
216
if args.apps:
217
source_path = args.apps
218
- meta_paths += f"-M {os.path.join(args.apps, "rose-meta")}"
+ meta_paths += f"-M {os.path.join(args.apps, "rose-meta")} "
219
rose_meta_path += args.apps
220
if args.core:
221
- source_path = args.core
222
meta_paths += f"-M {os.path.join(args.core, "rose-meta")} "
223
if rose_meta_path:
+ # Apps has already started this
224
rose_meta_path += f":{args.core}"
225
else:
226
+ # Apps hasn't been set
227
+ source_path = args.core
228
rose_meta_path = args.core
229
230
if check_rose_metadata(rose_meta_path, source_path) or check_rose_stem_apps(
0 commit comments