Skip to content

Commit

Permalink
nix: replace runCommandNoCC with runCommand (#3992)
Browse files Browse the repository at this point in the history
  • Loading branch information
oati authored Sep 27, 2022
1 parent 8fc4931 commit bdc7b35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grammars.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
stdenv,
lib,
runCommandLocal,
runCommandNoCC,
runCommand,
yj,
includeGrammarIf ? _: true,
...
Expand Down Expand Up @@ -115,7 +115,7 @@
builtins.map (grammar: "ln -s ${grammar.artifact}/${grammar.name}.so $out/${grammar.name}.so")
builtGrammars;
in
runCommandNoCC "consolidated-helix-grammars" {} ''
runCommand "consolidated-helix-grammars" {} ''
mkdir -p $out
${builtins.concatStringsSep "\n" grammarLinks}
''

0 comments on commit bdc7b35

Please sign in to comment.