diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-01-25 11:09:31 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-25 14:06:37 +0100 |
commit | 4d6ce0f12cf3724b89876f4e911fc84f344c4215 (patch) | |
tree | a908d667b0d7cfefd7d51cfda50a5c479c573b4e /guix | |
parent | 731c1a20bc7edf7612d34754a7760e8219220010 (diff) | |
download | gnu-guix-4d6ce0f12cf3724b89876f4e911fc84f344c4215.tar gnu-guix-4d6ce0f12cf3724b89876f4e911fc84f344c4215.tar.gz |
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).
Diffstat (limited to 'guix')
-rw-r--r-- | guix/scripts/refresh.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/scripts/refresh.scm b/guix/scripts/refresh.scm index a0de9f6c10..7292eabc47 100644 --- a/guix/scripts/refresh.scm +++ b/guix/scripts/refresh.scm @@ -419,8 +419,8 @@ the latest known version of ~a (~a)~%") (full-name x))) (lst (format (current-output-port) - (N_ "Building the following package would ensure ~d \ -dependent packages are rebuilt: ~*~{~a~^ ~}~%" + (N_ "Building the following ~*package would ensure ~d \ +dependent packages are rebuilt: ~{~a~^ ~}~%" "Building the following ~d packages would ensure ~d \ dependent packages are rebuilt: ~{~a~^ ~}~%" (length covering)) |