Skip to content

Commit

Permalink
Update lib/detect-libc.js
Browse files Browse the repository at this point in the history
Co-authored-by: Steven <[email protected]>
  • Loading branch information
lovell and styfle authored Jul 19, 2023
1 parent cb7a8ad commit 54032fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/detect-libc.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const familyFromCommand = (out) => {
};

const getFamilyFromLddContent = (content) => {
if (content.includes(MUSL)) {
if (content.includes('musl')) {
return MUSL;
}
if (content.includes('GLIBC')) {
Expand Down

0 comments on commit 54032fe

Please sign in to comment.