mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-01 17:01:00 -05:00
13 lines
285 B
Go
13 lines
285 B
Go
//go:build darwin && arm64
|
|
// +build darwin,arm64
|
|
|
|
package platform
|
|
|
|
var Paths = PlatformPaths{
|
|
TarFileName: "postgres-darwin-arm_64.txz",
|
|
InitDbExecutable: "initdb",
|
|
PostgresExecutable: "postgres",
|
|
PgDumpExecutable: "pg_dump",
|
|
PgRestoreExecutable: "pg_restore",
|
|
}
|