release-lib: forAllSupportedSystems -> forTheseSystems

I'm going to move forAllSystems from nixos/release.nix, and these
functions sound too similar while doing different things.
This commit is contained in:
Tuomas Tynkkynen
2018-01-16 18:48:54 +02:00
parent 822c949833
commit 82cab72dd4
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ in
f (["buildPackages"] ++ path) { inherit system crossSystem; }
);
testEqual = path: systems: forAllSupportedSystems systems (testEqualOne path);
testEqual = path: systems: forTheseSystems systems (testEqualOne path);
mapTestEqual = lib.mapAttrsRecursive testEqual;