File paths_linux_riscv64.go of Package failed_steampipe
//go:build linux && riscv64
// +build linux riscv64
package main
import "path/filepath"
// Platform-specific path helpers for linux/riscv64.
//
// NOTE: This file previously used a different package name which caused
// "found packages main and platform" build errors. It has been adjusted
// to use package main so all files in this directory compile together.
func configDirs() []string {
return []string{
"/etc/steampipe",
"/usr/local/etc/steampipe",
}
}
func dataDirs() []string {
return []string{
"/var/lib/steampipe",
"/usr/local/share/steampipe",
}
}
func defaultCacheDir() string {
return filepath.Join("/var", "cache", "steampipe")
}
func defaultHomeDir() string {
return filepath.Join("/home")
}