see if cd works instead of git -C

afb993f4ca8db7329ca9fa19d519d142be1cabb7

Tucker McKnight | Sun Jan 11 2026

see if cd works instead of git -C
main.ts:115
Before
115
            await exec(`git -C ${tempDirRepoPath} checkout ${branch}`)
After
115
            // TODO why doesn't git -C checkout work? Says that repo doesn't exist
            await exec(`(cd ${tempDirRepoPath} && git checkout ${branch})`)