treewide: runCommandNoCC -> runCommand

This has been synonymous for ~5y.
This commit is contained in:
Robert Hensing
2021-08-15 17:36:41 +02:00
parent 1359293549
commit fbafeb7ad5
36 changed files with 58 additions and 59 deletions
@@ -1,4 +1,4 @@
{ interpreter, writeText, runCommandNoCC }:
{ interpreter, writeText, runCommand }:
let
@@ -19,7 +19,7 @@ let
print(s)
'';
in runCommandNoCC "${interpreter.name}-site-prefix-mypy-test" {} ''
in runCommand "${interpreter.name}-site-prefix-mypy-test" {} ''
${pythonEnv}/bin/mypy ${pythonScript}
touch $out
''