1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-12 20:11:03 +01:00

Merge pull request #14742 from NixOS/fix-mingw

nix/cat: Fix mingw for real
This commit is contained in:
John Ericson 2025-12-08 21:41:40 +00:00 committed by GitHub
commit 6ffdd4652b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -98,7 +98,7 @@ struct CmdCatNar : StoreCommand, MixCat
if (path == neededPath) {
logger->stop();
crfSink.skipContents = false;
crfSink.fd = STDOUT_FILENO;
crfSink.fd = getStandardOutput();
found = true;
} else {
crfSink.skipContents = true;