(cwd: string)
| 66 | }; |
| 67 | |
| 68 | export const checkIfClean = async (cwd: string): Promise<boolean> => { |
| 69 | const { stdout } = await execWithOutput("git", ["status", "--porcelain"], { |
| 70 | cwd, |
| 71 | }); |
| 72 | return !stdout.length; |
| 73 | }; |
nothing calls this directly
no test coverage detected