Skip to content

Commit

Permalink
fix(admonish): Switch from gnu to musl binary to fix GLIBC version error
Browse files Browse the repository at this point in the history
  • Loading branch information
jontze committed Apr 24, 2023
1 parent 06049ac commit f0f75f3
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/Admonish.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe("Admonish", () => {
"tommilligan/mdbook-admonish",
"admonish-version",
"mdbook-admonish",
"unknown-linux-gnu"
"unknown-linux-musl"
);
expect(admonish).toBeDefined();
});
Expand Down
2 changes: 1 addition & 1 deletion src/mdbook/plugins/Admonish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class Admonish extends MdPlugin {
"tommilligan/mdbook-admonish",
"admonish-version",
"mdbook-admonish",
"unknown-linux-gnu"
"unknown-linux-musl"
);
}
}

0 comments on commit f0f75f3

Please sign in to comment.