Replace runCommandNoCCLocal alias with runCommandLocal

This commit is contained in:
Sandro Jäckel 2024-12-31 22:22:44 +01:00 committed by nix-infra-bot
parent bc87d91273
commit d608bccddd
12 changed files with 29 additions and 29 deletions

View file

@ -1,7 +1,7 @@
{
lib,
nixpkgsLib,
runCommandNoCCLocal,
runCommandLocal,
}:
let
inherit (lib) attrNames filter length;
@ -10,7 +10,7 @@ let
duplicates = filter (name: nixpkgsList ? ${name}) (attrNames nixvimList);
count = length duplicates;
in
runCommandNoCCLocal "maintainers-test" { inherit count duplicates; } ''
runCommandLocal "maintainers-test" { inherit count duplicates; } ''
if [ $count -gt 0 ]; then
echo "$count nixvim maintainers are also nixpkgs maintainers:"
for name in $duplicates; do