(command, args)
| 2161 | } |
| 2162 | |
| 2163 | function logCommand(command, args) { |
| 2164 | if (verbose) { |
| 2165 | console.log(`[cmd] ${shellQuote([command, ...args])}`); |
| 2166 | } |
| 2167 | } |
| 2168 | |
| 2169 | function logCommandResult(command, args, elapsedMs, stdout) { |
| 2170 | if (!verbose) { |
no test coverage detected