git-lfs/lfshttp/certs_nix.go

12 lines
237 B
Go
Raw Normal View History

//go:build !darwin && !windows
// +build !darwin,!windows
package lfshttp
import "crypto/x509"
func appendRootCAsForHostFromPlatform(pool *x509.CertPool, host string) *x509.CertPool {
// Do nothing, use golang default
return pool
}