Skip to content

Commit 13d91dd

Browse files
fix error
1 parent de0d575 commit 13d91dd

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

lfric_macros/validate_rose_meta.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ def check_rose_stem_apps(meta_paths, source_path):
128128
"""
129129

130130
print("\n\n[INFO] - Validating rose-stem apps\n\n")
131-
print(meta_paths)
132131
failed = False
133132

134133
start_dir = os.path.join(source_path, "rose-stem", "app")
@@ -205,11 +204,11 @@ def main():
205204
rose_meta_path = ""
206205
if args.apps:
207206
source_path = args.apps
208-
meta_paths += f"-M {args.apps}"
207+
meta_paths += f"-M {os.path.join(args.apps, "rose-meta")}"
209208
rose_meta_path += args.apps
210209
elif args.core:
211210
source_path = args.core
212-
meta_paths += f"-M {args.core} "
211+
meta_paths += f"-M {os.path.join(args.core, "rose-meta")} "
213212
if rose_meta_path:
214213
rose_meta_path += f":{args.core}"
215214
else:

0 commit comments

Comments
 (0)