mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-15 04:00:14 -05:00
13 lines
278 B
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",
|
|
}
|