Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Make sure we're only dealing with the SSL trust on Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisWiegman committed Sep 30, 2023
1 parent 8cc3c22 commit 495b377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/settings/ssl.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func (s *Settings) EnsureSSLCerts(consoleOutput *console.Console) error {
}

// If we're on Mac try to add the cert to the system trust.
if s.SSL {
if s.SSL && runtime.GOOS == "darwin" {
return TrustSSL(consoleOutput)
}

Expand Down

0 comments on commit 495b377

Please sign in to comment.