summaryrefslogtreecommitdiffhomepage
path: root/src/ffluci/model/ipkg.lua
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-04-06 19:48:29 +0000
committerSteven Barth <steven@midlink.org>2008-04-06 19:48:29 +0000
commit9de2f0d5918a0fb2b6d73fb8bcf9db1c9f9cc745 (patch)
treea8b31d7e67029225b38d81589b608131667975c2 /src/ffluci/model/ipkg.lua
parentb337ba71b15c06b9355d63a96bca9f1ba215aa0e (diff)
Diffstat (limited to 'src/ffluci/model/ipkg.lua')
-rw-r--r--src/ffluci/model/ipkg.lua8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/ffluci/model/ipkg.lua b/src/ffluci/model/ipkg.lua
index cbdd0f13b..3b149fb16 100644
--- a/src/ffluci/model/ipkg.lua
+++ b/src/ffluci/model/ipkg.lua
@@ -88,13 +88,7 @@ function _lookup(act, pkg)
cmd = cmd .. " '" .. pkg:gsub("'", "") .. "'"
end
- local info = _parselist(ffluci.sys.exec(cmd .. " 2>/dev/null"))
-
- if pkg then
- return info[pkg]
- else
- return info
- end
+ return _parselist(ffluci.sys.exec(cmd .. " 2>/dev/null"))
end
-- Internal parser function