Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 6 lines 218 B view raw
1// We override isatty to help 'automate' installers. 2 3// Some installers (mojoinstall) have a stdio GUI that refuses to run if you 4// feed it a file on stdin. This should help that. 5 6int isatty(int fd) { return 1; }