aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-01-17 17:20:04 -0500
committerAdam Harrison <adamdharrison@gmail.com>2023-01-17 17:20:04 -0500
commitd46b2092d0e81bdcbb94714df816f0f98371eb52 (patch)
tree69a8e6a61debf22054ef64496e1fbcb9c6b884b7 /src
parentc2c049448c4357eeb8474f21e880fd7258d90d80 (diff)
downloadlite-xl-plugin-manager-d46b2092d0e81bdcbb94714df816f0f98371eb52.tar.gz
lite-xl-plugin-manager-d46b2092d0e81bdcbb94714df816f0f98371eb52.zip
Added specific case to test suite, and fixed complex vs. singleton typing for some plugins.v0.9995
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 a950e27..f81f69c 100644
--- a/src/lpm.lua
+++ b/src/lpm.lua
@@ -586,7 +586,7 @@ function Addon.new(repository, metadata)
}, metadata), Addon)
self.type = type
-- Directory.
- self.organization = metadata.organization or (((self.files and #self.files > 0) or self.remote or (not self.path and not self.url)) and "complex" or "singleton")
+ self.organization = metadata.organization or (((self.files and #self.files > 0) or self.remote or (not self.path and not self.url) or (self.path and not self.path:find("%.lua$"))) and "complex" or "singleton")
if not self.local_path and repository then
if metadata.remote then
local local_path = (Repository.url(metadata.remote).local_path .. (metadata.path and (PATHSEP .. metadata.path:gsub("^/", "")) or ""))