Skip to content

Commit

Permalink
fix(toc): Use musl binary to remove glibc dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jontze committed Jan 11, 2023
1 parent 86a00d8 commit c807e4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mdbook/plugins/Toc.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe("Toc", () => {
"badboy/mdbook-toc",
"toc-version",
"mdbook-toc",
"unknown-linux-gnu"
"unknown-linux-musl"
);
expect(linkchecker).toBeDefined();
});
Expand Down
2 changes: 1 addition & 1 deletion src/mdbook/plugins/Toc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class Toc extends MdPlugin {
"badboy/mdbook-toc",
"toc-version",
"mdbook-toc",
"unknown-linux-gnu"
"unknown-linux-musl"
);
}
}

0 comments on commit c807e4f

Please sign in to comment.