(p: str)
| 111 | if touched_paths: |
| 112 | # quote paths safely and touch them |
| 113 | def _sh_quote(p: str) -> str: |
| 114 | return "'" + p.replace("'", "'\"'\"'") + "'" |
| 115 | quoted = " ".join(_sh_quote(p) for p in touched_paths) |
| 116 | base_cwd = sandbox.sandbox.cwd |
| 117 | touch_cmd = await sandbox.run_command_detached( |
no outgoing calls
no test coverage detected