logging statements, trying to debug why site generation fails on post-receive

7d781e305f0be69b7c28a32ed0934f1b5ce40fe4

Tucker McKnight | Sun Jan 11 2026

logging statements, trying to debug why site generation fails on post-receive
main.ts:109
Before
109
          await exec(`git clone -s ${directories.output}${eleventyConfig.getFilter("slugify")(repoName)}.git ${tempDirRepoPath}`)
After
109
          const cloneResult = await exec(`git clone -s ${directories.output}${eleventyConfig.getFilter("slugify")(repoName)}.git ${tempDirRepoPath}`)
          console.log("clone result awaited")
          console.log(cloneResult)
            console.log(`in branch ${branch}, ls tempdirrepopath then checkout ${branch}`)
            console.log(await exec(`ls -lha ${tempDirRepoPath}`))
              console.log(`cding into ${tempDirRepoPath}`)