Remove tracing output from intel packages

This commit is contained in:
Rodrigo Arias 2023-09-28 09:15:09 +02:00
parent 552ebdbede
commit ce7238c780

View File

@ -71,7 +71,9 @@ let
matches = lib.filter (x: name == x.Package) pkgList; matches = lib.filter (x: name == x.Package) pkgList;
#match = assert lib.length matches == 1; lib.elemAt matches 0; #match = assert lib.length matches == 1; lib.elemAt matches 0;
n = lib.length matches; n = lib.length matches;
match = builtins.trace (name + " -- n=${builtins.toString n}") (lib.elemAt matches 0); match =
#builtins.trace (name + " -- n=${builtins.toString n}")
(lib.elemAt matches 0);
in in
apthost + match.Filename; apthost + match.Filename;