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

13 lines
278 B
Go

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