Files
steampipe/pkg/db/platform/paths_linux_arm64.go

13 lines
282 B
Go

//go:build linux && arm64
// +build linux,arm64
package platform
var Paths = PlatformPaths{
TarFileName: "postgres-linux-arm_64.txz",
InitDbExecutable: "initdb",
PostgresExecutable: "postgres",
PgDumpExecutable: "pg_dump",
PgRestoreExecutable: "pg_restore",
}