mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-04 01:55:11 +02:00
Replace runCommandNoCCLocal alias with runCommandLocal
This commit is contained in:
parent
bc87d91273
commit
d608bccddd
12 changed files with 29 additions and 29 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue