mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-12 16:00:25 -04:00
Nomad was manually updated, so revert that to the version in master, remove it from vendor.json and add it to the ignore list. Update all packages that were in an unknown state to their latest master commits.
10 lines
230 B
Go
10 lines
230 B
Go
// +build windows
|
|
|
|
package pq
|
|
|
|
import "os"
|
|
|
|
// sslCertificatePermissions checks the permissions on user-supplied certificate
|
|
// files. In libpq, this is a no-op on Windows.
|
|
func sslCertificatePermissions(cert, key os.FileInfo) {}
|