(signal)
| 151 | } |
| 152 | |
| 153 | function killCommand(signal) { |
| 154 | process.removeListener('exit', onProcessExit) |
| 155 | if (proc) { |
| 156 | proc.kill(signal) |
| 157 | proc = null |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | // Exported to improve generated API documentation. |
no test coverage detected