forked from the-distro/channel-scripts
don't generate program index for i686 anymore (#56)
It doesn't seem useful. It takes some resources (time + RAM), and most notably it sometimes block channel with harder-to-get logs.
This commit is contained in:
parent
46e717bce0
commit
b2053e2a33
|
@ -90,7 +90,7 @@ void mainWrapped(int argc, char * * argv)
|
|||
/* Get all derivations. */
|
||||
DrvInfos packages;
|
||||
|
||||
for (auto system : std::set<std::string>{"x86_64-linux", "i686-linux", "aarch64-linux"}) {
|
||||
for (auto system : std::set<std::string>{"x86_64-linux", "aarch64-linux"}) {
|
||||
auto args = state.allocBindings(2);
|
||||
Value * vConfig = state.allocValue();
|
||||
state.mkAttrs(*vConfig, 0);
|
||||
|
|
Loading…
Reference in a new issue