truststore_linux: remove PATH check for SystemTrustCommand

It's hard to predict what the PATH that sudo will use, and there
shouldn't be many cases where we don't find the command anyway.

Fixes #188
This commit is contained in:
Filippo Valsorda
2019-08-16 18:20:09 -04:00
parent 8ff73503d2
commit 343aec289a

View File

@@ -45,9 +45,6 @@ func init() {
SystemTrustFilename = "/usr/share/pki/trust/anchors/%s.pem" SystemTrustFilename = "/usr/share/pki/trust/anchors/%s.pem"
SystemTrustCommand = []string{"update-ca-certificates"} SystemTrustCommand = []string{"update-ca-certificates"}
} }
if SystemTrustCommand != nil && !binaryExists(SystemTrustCommand[0]) {
SystemTrustCommand = nil
}
} }
func (m *mkcert) systemTrustFilename() string { func (m *mkcert) systemTrustFilename() string {