Skip to content

Commit

Permalink
fix: don't fail install if musl check fails
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Jul 13, 2023
1 parent 1e8dbe4 commit 646c3eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer/installer.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func NewInstaller(opts ...installerConfig) (*Installer, error) {
if runtime.GOOS == "linux" {
err := i.checkMusl()
if err != nil {
return nil, err
log.Println("[DEBUG] unable to check for presence musl library due to error:", err)
}
}

Expand Down

0 comments on commit 646c3eb

Please sign in to comment.