Remove logging/debug lines for build steps

db0aed37db3983b61860d87a9fc0f929a58cb107

Tucker McKnight | Mon Jan 12 2026

Remove logging/debug lines for build steps

Seems to be a problem that happens with a specific git version.
Couldn't figure out what the issue was.

Also add name of mithril server side rendering branch name to wiki.
README.md:45
Before
45
test
After
45
main.ts:109
Before
109
110
111
112
113
114
115
116
117
118
          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('pwd is')
            console.log(await exec('pwd'))
            console.log(`cwd is ${process.cwd()}`)
            await exec(`(sleep 1 && cd ${tempDirRepoPath} && sleep 1 && git checkout ${branch})`)
              console.log(`cding into ${tempDirRepoPath}`)
After
109
110
111
112
113
114
115
116
117
118
          await exec(`git clone -s ${directories.output}${eleventyConfig.getFilter("slugify")(repoName)}.git ${tempDirRepoPath}`)
            await exec(`(cd ${tempDirRepoPath} && git checkout ${branch})`)
wiki/index.md:16
Before
16
After
16
  - git-branch: `mithril-server-side-rendering`