Skip to content

Commit

Permalink
Pin docc render build to specific sha
Browse files Browse the repository at this point in the history
  • Loading branch information
award999 committed Dec 10, 2024
1 parent 60cd7e8 commit 977186b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/update_swift_docc_render.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async function cloneSwiftDocCRender(buildDirectory: string): Promise<string> {
const swiftDocCRenderDirectory = path.join(buildDirectory, "swift-docc-render");
const git = simpleGit({ baseDir: buildDirectory });
console.log("> git clone https://github.com/swiftlang/swift-docc-render.git");
await git.clone("https://github.com/swiftlang/swift-docc-render.git", swiftDocCRenderDirectory);
await git.clone("https://github.com/swiftlang/swift-docc-render.git", swiftDocCRenderDirectory, ["10b097153d89d7bfc2dd400b47181a782a0cfaa0"]);
await git.cwd(swiftDocCRenderDirectory);
// Apply our patches to swift-docc-render
const patches = (
Expand Down

0 comments on commit 977186b

Please sign in to comment.