From 34f5eaeaa22cc708ae3f052be0eb9e8bfae4719e Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 21 Jan 2019 17:02:54 -0500 Subject: [PATCH] chore: rename helper method --- plugins/common/properties.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/common/properties.go b/plugins/common/properties.go index 61da772f3..60a6f3767 100644 --- a/plugins/common/properties.go +++ b/plugins/common/properties.go @@ -127,8 +127,8 @@ func getPluginConfigPath(pluginName string) string { return strings.Join([]string{MustGetEnv("DOKKU_LIB_ROOT"), "config", pluginName}, "/") } -// makePropertyPath ensures that a property path exists -func makePropertyPath(pluginName string, appName string) (err error) { +// makePluginAppPropertyPath ensures that a property path exists +func makePluginAppPropertyPath(pluginName string, appName string) (err error) { pluginAppConfigRoot := getPluginAppPropertyPath(pluginName, appName) if err = os.MkdirAll(pluginAppConfigRoot, 0755); err != nil { return