(command: string)
| 36 | } |
| 37 | |
| 38 | export async function runQuickCommand(command: string): Promise<string> { |
| 39 | const wrapped = wrapShellCommand(command); |
| 40 | return getBackgroundExecutor().execute(wrapped, true); |
| 41 | } |
| 42 | |
| 43 | export async function runForegroundCommand(command: string): Promise<string> { |
| 44 | const wrapped = wrapShellCommand(command); |
no test coverage detected