diff options
author | Shea Levy <shea@shealevy.com> | 2018-03-02T15·59-0500 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2018-03-02T15·59-0500 |
commit | aa8bbbf69dfb7a1cd02237fee65c2fce39d27556 (patch) | |
tree | f1780a7b9ca97e3034d14dce3adfba7184fe8d67 /src/nix-store | |
parent | 5c7a6d07de1dbe18eaac5e6bce766dbe978b8165 (diff) | |
parent | 78ac3eb4ebc04e180abeb01bcc6f9d4103522eab (diff) |
Merge branch 'write-failure-fixes' of git://github.com/lheckemann/nix
Diffstat (limited to 'src/nix-store')
-rw-r--r-- | src/nix-store/nix-store.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index efef7f15c094..e1e27ceef94d 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -631,6 +631,7 @@ static void opDump(Strings opFlags, Strings opArgs) FdSink sink(STDOUT_FILENO); string path = *opArgs.begin(); dumpPath(path, sink); + sink.flush(); } @@ -656,6 +657,7 @@ static void opExport(Strings opFlags, Strings opArgs) FdSink sink(STDOUT_FILENO); store->exportPaths(opArgs, sink); + sink.flush(); } |