summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-06-19 22:42:03 +0200
committerLudovic Courtès <ludo@gnu.org>2013-06-19 22:42:03 +0200
commit9af05aa29d740f753484a1c37a562f4da2c789c3 (patch)
tree2a74c35905252bc9ab42a105d8bae119e7b1a5ab /guix
parentc7c834a99887c55627f1100a590416f3c9b4f18b (diff)
package: Display the number of installed packages upon completion.
* guix/scripts/package.scm (guix-package)[process-actions]: Display the number of packages in the profile upon completion.
Diffstat (limited to 'guix')
-rw-r--r--guix/scripts/package.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm
index 69b7efd154..0006cbd80f 100644
--- a/guix/scripts/package.scm
+++ b/guix/scripts/package.scm
@@ -849,6 +849,8 @@ more information.~%"))
(begin
(switch-symlinks name prof)
(switch-symlinks profile name)
+ (format #t (_ "~a packages in profile~%")
+ (length packages))
(display-search-paths packages
profile))))))))))