(message: string)
| 13 | } |
| 14 | |
| 15 | export async function gitCommit(message: string): Promise<void> { |
| 16 | await git('add', '-A'); |
| 17 | const { stdout } = await silentGit('status', '--porcelain'); |
| 18 | if (stdout != '') { |
| 19 | await git('commit', '-am', message); |
| 20 | } |
| 21 | } |
no test coverage detected