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 20387ad commit 1e8f811Copy full SHA for 1e8f811
packages/service-integration/src/service_integration/cli/_compose_spec.py
@@ -192,6 +192,14 @@ def create_compose(
192
if file_path.exists():
193
configs_kwargs_map[config_name][arg_name] = file_path
194
195
+ # warn about subfolders without metadata.yml
196
+ for subdir in filter(lambda p: p.is_dir(), basedir.rglob("*")):
197
+ if not (subdir / "metadata.yml").exists():
198
+ relative_subdir = subdir.relative_to(basedir)
199
+ rich.print(
200
+ f"[warning] Subfolder '{relative_subdir}' does not contain a 'metadata.yml' file. Skipping."
201
+ )
202
+
203
if not configs_kwargs_map:
204
rich.print(f"[warning] No config files were found in '{config_path}'")
205
0 commit comments