1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

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,6 +1,6 @@
{
makeNixvimWithModule,
runCommandNoCCLocal,
runCommandLocal,
}:
let
defaultModule =
@ -31,7 +31,7 @@ let
};
};
in
runCommandNoCCLocal "special-arg-test" { printConfig = "${generated}/bin/nixvim-print-init"; } ''
runCommandLocal "special-arg-test" { printConfig = "${generated}/bin/nixvim-print-init"; } ''
config=$($printConfig)
if ! "$printConfig" | grep -- '-- regularArg=regularValue'; then
echo "Missing regularArg in config"