Skip to content

Commit afde04d

Browse files
committed
progress
1 parent b974d1d commit afde04d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/@postgrestools/postgrestools/bin/postgrestools

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,9 @@ function isMusl() {
3131
],
3232
});
3333
} catch (err) {
34-
if (typeof err === "object" && err !== null && "stderr" in err) {
3534
stdout = err.stderr;
36-
}
3735
}
38-
if (typeof stdout === 'string' && stdout?.indexOf("musl") > -1) {
36+
if (typeof stdout === 'string' && stdout.indexOf("musl") > -1) {
3937
return true;
4038
}
4139
return false;

0 commit comments

Comments
 (0)