util.startup: Reorganized code at setup_plugindir
authorJoão Duarte <jvsDuarte08@gmail.com>
Thu, 01 Aug 2019 09:29:40 -0700
changeset 10205 2457b6b1908b
parent 10204 48ee50ed9972
child 10206 d3764eed7ded
util.startup: Reorganized code at setup_plugindir
util/startup.lua
--- a/util/startup.lua	Thu Aug 01 09:29:18 2019 -0700
+++ b/util/startup.lua	Thu Aug 01 09:29:40 2019 -0700
@@ -229,15 +229,15 @@
 	local custom_plugin_paths = config.get("*", "plugin_paths");
 	local installer_plugin_path = config.get("*", "installer_plugin_path") or "custom_plugins";
 	local path_sep = package.config:sub(3,3);
+	installer_plugin_path = config.resolve_relative_path(require "lfs".currentdir(), installer_plugin_path);
+	require "lfs".mkdir(installer_plugin_path);
+	config.complement_lua_path(installer_plugin_path);
 	if custom_plugin_paths then
 		-- path1;path2;path3;defaultpath...
 		-- luacheck: ignore 111
 		CFG_PLUGINDIR = table.concat(custom_plugin_paths, path_sep)..path_sep..(CFG_PLUGINDIR or "plugins");
 		prosody.paths.plugins = CFG_PLUGINDIR;
 	end
-	installer_plugin_path = config.resolve_relative_path(require "lfs".currentdir(), installer_plugin_path);
-	require "lfs".mkdir(installer_plugin_path);
-	config.complement_lua_path(installer_plugin_path);
 	CFG_PLUGINDIR = installer_plugin_path..path_sep..(CFG_PLUGINDIR or "plugins");
 	prosody.paths.plugins = CFG_PLUGINDIR;
 end