writers: use runCommand instead of runCommandNoCC
runCommandNoCC is now an alias for runCommand, which was causing ofborg failures with allowAliases = false.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ lib, runCommandNoCC, dasel }:
|
||||
{ lib, runCommand, dasel }:
|
||||
let
|
||||
daselBin = lib.getExe dasel;
|
||||
|
||||
@@ -28,7 +28,7 @@ rec {
|
||||
let
|
||||
name = last (builtins.split "/" nameOrPath);
|
||||
in
|
||||
runCommandNoCC name
|
||||
runCommand name
|
||||
{
|
||||
input = input data;
|
||||
passAsFile = [ "input" ];
|
||||
|
||||
Reference in New Issue
Block a user