summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValleyKnight <[email protected]>2021-05-12 11:39:25 -0400
committerValleyKnight <[email protected]>2021-05-12 11:39:25 -0400
commit3d6d64e112f8522389aad50bc9836102df47f8c2 (patch)
tree276edffe34dc90a3dab68429cc84fddf077253aa
parentf031538aaa4be4c41d260388ead0d62d5cfdbb4a (diff)
remove extra whitespace
-rw-r--r--xmake/modules/package/manager/portage/find_package.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/package/manager/portage/find_package.lua b/xmake/modules/package/manager/portage/find_package.lua
index c10b079ee..9011705f5 100644
--- a/xmake/modules/package/manager/portage/find_package.lua
+++ b/xmake/modules/package/manager/portage/find_package.lua
@@ -43,7 +43,7 @@ function main(name, opt)
local file_path = "/var/db/pkg/*/" .. name .. "-*/"
local file = find_file("CONTENTS", file_path)
local file_contents = try { function() return io.readfile(file) end }
-
+
-- if the file contents couldn't be obtained, the package isn't installed
if not file_contents then
return
@@ -61,7 +61,7 @@ function main(name, opt)
end
end
end
-
+
-- create an initial empty string for the list
local list = ""
for _, value in pairs(list_table) do