(p: str)
| 286 | |
| 287 | # Small helper to safely single-quote paths for bash |
| 288 | def _sh_quote(p: str) -> str: |
| 289 | return "'" + p.replace("'", "'\"'\"'") + "'" |
| 290 | |
| 291 | project_map = ctx.context.project or {} |
| 292 |
no outgoing calls
no test coverage detected