remove debugging traces

This commit is contained in:
sadan 2025-06-24 14:04:29 -04:00
parent 47cf925a08
commit dd7781a511
No known key found for this signature in database

View file

@ -16,8 +16,7 @@ let
}: }:
let let
text = '' text = ''
export PATH="${builtins.trace (lib.makeSearchPath "bin" env) (lib.makeSearchPath "bin" env)}"; export PATH="${lib.makeSearchPath "bin" env}";
echo bar;
exec ${pkgs.bash}/bin/bash ${file} $@ exec ${pkgs.bash}/bin/bash ${file} $@
''; '';
@ -26,7 +25,7 @@ let
name = "${name}-${version}"; name = "${name}-${version}";
executable = true; executable = true;
destination = "/bin/${name}"; destination = "/bin/${name}";
text = builtins.trace text text; inherit text;
}; };
paste = mkScript { paste = mkScript {
name = "paste"; name = "paste";