refresh: Fix format string that would lead '-l' to print incorrect numbers.
authorLudovic Courtès <ludo@gnu.org>
Fri, 25 Jan 2019 10:09:31 +0000 (11:09 +0100)
committerLudovic Courtès <ludo@gnu.org>
Fri, 25 Jan 2019 13:06:37 +0000 (14:06 +0100)
commit4d6ce0f12cf3724b89876f4e911fc84f344c4215
treea908d667b0d7cfefd7d51cfda50a5c479c573b4e
parent731c1a20bc7edf7612d34754a7760e8219220010
refresh: Fix format string that would lead '-l' to print incorrect numbers.

The skip "~*" argument was misplaced, leading the number of dependents
to be skipped (instead of the number of covering packages.)  Thus, we'd
get:

  $ guix refresh -l ocaml4.02-ppx-deriving@4.1
  Building the following package would ensure 1 dependent packages are rebuilt: bap@1.3.0

instead of:

  Building the following package would ensure 26 dependent packages are rebuilt: bap@1.3.0

* guix/scripts/refresh.scm (list-dependents): Move "~*" in the right
place, to skip (length covering) rather than (length dependents).
guix/scripts/refresh.scm