mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-22 16:01:43 -04:00
40 lines
891 B
Go
40 lines
891 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package packer
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/hashicorp/packer-plugin-sdk/pathing"
|
|
)
|
|
|
|
// PluginFolders returns the list of known plugin folders based on system.
|
|
func PluginFolders(dirs ...string) []string {
|
|
res := []string{}
|
|
|
|
if packerPluginPath := os.Getenv("PACKER_PLUGIN_PATH"); packerPluginPath != "" {
|
|
res = append(res, strings.Split(packerPluginPath, string(os.PathListSeparator))...)
|
|
return res
|
|
}
|
|
|
|
if path, err := os.Executable(); err != nil {
|
|
log.Printf("[ERR] Error finding executable: %v", err)
|
|
} else {
|
|
res = append(res, filepath.Dir(path))
|
|
}
|
|
|
|
res = append(res, dirs...)
|
|
|
|
if cd, err := pathing.ConfigDir(); err != nil {
|
|
log.Printf("[ERR] Error loading config directory: %v", err)
|
|
} else {
|
|
res = append(res, filepath.Join(cd, "plugins"))
|
|
}
|
|
|
|
return res
|
|
}
|