diff options
author | Jade Lovelace <lix@jade.fyi> | 2024-08-12 16:04:22 -0700 |
---|---|---|
committer | Jade Lovelace <lix@jade.fyi> | 2024-08-12 16:04:22 -0700 |
commit | 7e0fee530939cded2cf036ee8b4cc3cfd1103c0e (patch) | |
tree | 2c8efb5417818e3e6400a2c39414988bd2698f9d /doc/manual/rl-next/fix-gc-dry-run.md | |
parent | 5137cea99044d54337e439510a647743110b2d7d (diff) |
release: release notes for 2.91.0
Release created with releng/create_release.xsh
Change-Id: Ieb6ca02d3cf986b28440fce3792e8c38ce80a33e
Diffstat (limited to 'doc/manual/rl-next/fix-gc-dry-run.md')
-rw-r--r-- | doc/manual/rl-next/fix-gc-dry-run.md | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/doc/manual/rl-next/fix-gc-dry-run.md b/doc/manual/rl-next/fix-gc-dry-run.md deleted file mode 100644 index 6095d7727..000000000 --- a/doc/manual/rl-next/fix-gc-dry-run.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -synopsis: Fix nix-collect-garbage --dry-run -issues: [fj#432] -cls: [1566] -category: Fixes -credits: [quantumjump] ---- - -`nix-collect-garbage --dry-run` did not previously give any output - it simply -exited without even checking to see what paths would be deleted. - -``` -$ nix-collect-garbage --dry-run -$ -``` - -We updated the behaviour of the flag such that instead it prints out how many -paths it *would* delete, but doesn't actually delete them. - -``` -$ nix-collect-garbage --dry-run -finding garbage collector roots... -determining live/dead paths... -... -<nix store paths> -... -2670 store paths deleted, 0.00MiB freed -$ -``` |