mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Add missing OS_ARCH dir to global plugin paths
When the global directory was added, the discovery system still attempted to search for OS_ARCH subdirectories. It has since been changed only search explicit paths.
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
// globalPluginDirs returns directories that should be searched for
|
||||
@@ -18,7 +20,8 @@ func globalPluginDirs() []string {
|
||||
if err != nil {
|
||||
log.Printf("[ERROR] Error finding global config directory: %s", err)
|
||||
} else {
|
||||
ret = append(ret, filepath.Join(dir, "plugins"))
|
||||
machineDir := fmt.Sprintf("%s_%s", runtime.GOOS, runtime.GOARCH)
|
||||
ret = append(ret, filepath.Join(dir, "plugins", machineDir))
|
||||
}
|
||||
|
||||
return ret
|
||||
|
Reference in New Issue
Block a user