From d317295e55436b65519f05f48d76abc989354283 Mon Sep 17 00:00:00 2001
From: Jo?o Duarte <jvsDuarte08@gmail.com>
Date: Thu, 1 Aug 2019 08:08:06 -0700
Subject: util.startup: Directly calling lfs.currentdir instead of storing it
 in a local variable

---
 util/startup.lua | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/util/startup.lua b/util/startup.lua
index e7107a9c..abf985f8 100644
--- a/util/startup.lua
+++ b/util/startup.lua
@@ -236,8 +236,7 @@ function startup.setup_plugindir()
 		CFG_PLUGINDIR = table.concat(custom_plugin_paths, path_sep)..path_sep..(CFG_PLUGINDIR or "plugins");
 		prosody.paths.plugins = CFG_PLUGINDIR;
 	end
-	local current_directory = require "lfs".currentdir();
-	installer_plugin_path = config.resolve_relative_path(current_directory, installer_plugin_path);
+	installer_plugin_path = config.resolve_relative_path(require "lfs".currentdir(), installer_plugin_path);
 	require "lfs".mkdir(installer_plugin_path)
 	-- Checking for duplicates
 	-- The commands using luarocks need the path to the directory that has the /share and /lib folders.
-- 
cgit v1.2.3