mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-16 04:04:34 +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
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
helpers,
|
||||
lib,
|
||||
runCommandNoCCLocal,
|
||||
runCommandLocal,
|
||||
writeText,
|
||||
}:
|
||||
let
|
||||
|
@ -493,9 +493,9 @@ let
|
|||
};
|
||||
in
|
||||
if results == [ ] then
|
||||
runCommandNoCCLocal "lib-tests-success" { } "touch $out"
|
||||
runCommandLocal "lib-tests-success" { } "touch $out"
|
||||
else
|
||||
runCommandNoCCLocal "lib-tests-failure"
|
||||
runCommandLocal "lib-tests-failure"
|
||||
{
|
||||
results = lib.concatStringsSep "\n" (
|
||||
builtins.map (result: ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue