Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nix
base: 5c7a6d07de1d
Choose a base ref
...
head repository: NixOS/nix
compare: aa8bbbf69dfb
Choose a head ref
  • 2 commits
  • 5 files changed
  • 2 contributors

Commits on Feb 13, 2018

  1. Fix #1762

    nix-store --export, nix-store --dump, and nix dump-path would previously
    fail silently if writing the data out failed, because
     a) FdSink::write ignored exceptions, and
     b) the commands relied on FdSink's destructor, which ignores
        exceptions, to flush the data out.
    
    This could cause rather opaque issues with installing nixos, because
    nix-store --export would happily proceed even if it couldn't write its
    data out (e.g. if nix-store --import on the other side of the pipe
    failed).
    
    This commit adds tests that expose these issues in the nix-store
    commands, and fixes them for all three.
    lheckemann committed Feb 13, 2018
    Configuration menu
    Copy the full SHA
    78ac3eb View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2018

  1. Configuration menu
    Copy the full SHA
    aa8bbbf View commit details
    Browse the repository at this point in the history