pwd

a52d09f185b6ecb404829954e228278a5a92b2e0

Tucker McKnight <tucker@pangolin.lan> | Sun Jan 11 2026

pwd
main.ts:116
Before
115
116
117


118
119
120
            console.log(`in branch ${branch}, ls tempdirrepopath then checkout ${branch}`)
            console.log(await exec(`ls -lha ${tempDirRepoPath}`))
            // TODO why doesn't git -C checkout work? Says that repo doesn't exist
⁣
⁣
            console.log(`pwd is ${await exec('pwd')} cwd is ${process.cwd()}`)
            await exec(`(sleep 1 && cd ${tempDirRepoPath} && sleep 1 && git checkout ${branch})`)
            for (let buildStep of repoConfig.buildSteps) {
              // Run the command for each step in each branch
After
115
116
117
118
119
120
121
122
            console.log(`in branch ${branch}, ls tempdirrepopath then checkout ${branch}`)
            console.log(await exec(`ls -lha ${tempDirRepoPath}`))
            // TODO why doesn't git -C checkout work? Says that repo doesn't exist
            console.log('pwd is')
            console.log(await exec('pwd'))
            console.log(`cwd is ${process.cwd()}`)
            await exec(`(sleep 1 && cd ${tempDirRepoPath} && sleep 1 && git checkout ${branch})`)
            for (let buildStep of repoConfig.buildSteps) {
              // Run the command for each step in each branch