Branch

commit first line goes here

Tue Dec 02 2025

Tucker McKnight <tmcknight@instructure.com>

fix an error where build step artifacts were going into a subdirectory

e9e2864ba02d4d78e7255d36938c14f30390950c

Side-by-side
Stacked
main.ts:84
Before
84
              await exec(`cp -r --remove-destination ${tempDirRepoPath}/${artifactStep.copyFrom} ${directories.output}${eleventyConfig.getFilter("slugify")(repoName)}/branches/${eleventyConfig.getFilter("slugify")(branch)}/${artifactStep.copyTo}`)
After
84
              await exec(`cp -r ${tempDirRepoPath}/${artifactStep.copyFrom} ${directories.output}${eleventyConfig.getFilter("slugify")(repoName)}/branches/${eleventyConfig.getFilter("slugify")(branch)}/${artifactStep.copyTo}`)