aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xapt-panopticon.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-panopticon.lua b/apt-panopticon.lua
index 2237232..70a9b83 100755
--- a/apt-panopticon.lua
+++ b/apt-panopticon.lua
@@ -755,12 +755,12 @@ local parsePackages = function(host)
755 'results/' .. APT.options.referenceSite.value .. '/merged/dists/' .. n .. dir .. 'Packages_parsed-sorted ' .. 755 'results/' .. APT.options.referenceSite.value .. '/merged/dists/' .. n .. dir .. 'Packages_parsed-sorted ' ..
756 ' | grep -E "^\\+" | grep -Ev "^\\+\\+\\+|^---" >>results/NEW_' .. list.out .. '_TMP_' .. n .. '.txt') 756 ' | grep -E "^\\+" | grep -Ev "^\\+\\+\\+|^---" >>results/NEW_' .. list.out .. '_TMP_' .. n .. '.txt')
757 for i, s in pairs(referenceDebs) do 757 for i, s in pairs(referenceDebs) do
758 if 0 < Apt.exe('grep "' .. s:sub(8, -1) .. '" results/OLD_' .. list.out .. '_' .. n .. '.txt'):Do().status then 758 if 0 < APT.exe('grep "' .. s:sub(8, -1) .. '" results/OLD_' .. list.out .. '_' .. n .. '.txt'):Do().status then
759 print('Reference package is out of date - ' .. s) 759 print('Reference package is out of date - ' .. s)
760 end 760 end
761 end 761 end
762 for i, s in pairs(referenceDevs) do 762 for i, s in pairs(referenceDevs) do
763 if 0 < Apt.exe('grep "' .. s:sub(8, -1) .. '" results/OLD_' .. list.out .. '_' .. n .. '.txt'):Do().status then 763 if 0 < APT.exe('grep "' .. s:sub(8, -1) .. '" results/OLD_' .. list.out .. '_' .. n .. '.txt'):Do().status then
764 print('Reference package is out of date - ' .. s) 764 print('Reference package is out of date - ' .. s)
765 end 765 end
766 end 766 end