mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-19 14:31:40 -04:00
* Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at https://hashi.co/license-faq, and details of the license at www.hashicorp.com/bsl. * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
40 lines
892 B
Go
40 lines
892 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
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
|
|
}
|