Tucker McKnight
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.
45
test
45
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}`)
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})`)
16
16
- git-branch: `mithril-server-side-rendering`