Skip to content

Commit

Permalink
Merge pull request #2863 from jakobmoellersap/fix-application-support…
Browse files Browse the repository at this point in the history
…-folder-macos-external-plugins

🐛 "Application Support" whitespace for mac plugins
  • Loading branch information
k8s-ci-robot authored Aug 17, 2022
2 parents aac732c + b248885 commit 0ca25c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cli/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ func getPluginsRoot(host string) (pluginsRoot string, err error) {
switch host {
case "darwin":
logrus.Debugf("Detected host is macOS.")
pluginsRoot = filepath.Join("Library", "ApplicationSupport", "kubebuilder", "plugins")
pluginsRoot = filepath.Join("Library", "Application Support", "kubebuilder", "plugins")
case "linux":
logrus.Debugf("Detected host is Linux.")
pluginsRoot = filepath.Join(".config", "kubebuilder", "plugins")
Expand Down

0 comments on commit 0ca25c1

Please sign in to comment.