diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-06-19 22:42:03 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-06-19 22:42:03 +0200 |
commit | 9af05aa29d740f753484a1c37a562f4da2c789c3 (patch) | |
tree | 2a74c35905252bc9ab42a105d8bae119e7b1a5ab | |
parent | c7c834a99887c55627f1100a590416f3c9b4f18b (diff) | |
download | patches-9af05aa29d740f753484a1c37a562f4da2c789c3.tar patches-9af05aa29d740f753484a1c37a562f4da2c789c3.tar.gz |
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.
-rw-r--r-- | guix/scripts/package.scm | 2 |
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)))))))))) |