(ctx: Context, **kwargs)
| 1233 | |
| 1234 | |
| 1235 | def _check_pkg_build_files_exist(ctx: Context, **kwargs): |
| 1236 | for name, path in kwargs.items(): |
| 1237 | if not path.exists(): |
| 1238 | ctx.error(f"The path {path} does not exist, {name} is not valid... exiting") |
| 1239 | ctx.exit(1) |
no test coverage detected