aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lpm.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lpm.lua b/src/lpm.lua
index 7b291cf..884be6d 100644
--- a/src/lpm.lua
+++ b/src/lpm.lua
@@ -676,7 +676,7 @@ function Addon.new(repository, metadata)
if self.remote then
local repo = Repository.url(self.remote)
local local_path = repo.local_path and (repo.local_path .. (self.path and (PATHSEP .. self.path:gsub("^/", ""):gsub("%.$", "")) or ""))
- self.local_path = local_path and system.stat(local_path) or nil
+ self.local_path = local_path and system.stat(local_path) and local_path or nil
else
self.local_path = (repository.local_path .. (self.path and (PATHSEP .. self.path:gsub("^/", ""):gsub("%.$", "")) or "")) or nil
end