diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-02-14 16:58:22 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-02-27 18:06:19 +0100 |
commit | 2ddfb7b99b27f4aef91770b9fd17ca817f51b4a6 (patch) | |
tree | 7addeb400adc93b66cb6a3900ee187e1ad1fd3b4 /guix/scripts/pull.scm | |
parent | bc8bea1739294f2c939f3dbb663d834a4d1d5856 (diff) |
pull: No longer print upgraded/added packages upon completion.
* guix/scripts/pull.scm (build-and-install): Remove call to
'display-profile-news' and adjust accordingly.
Diffstat (limited to 'guix/scripts/pull.scm')
-rw-r--r-- | guix/scripts/pull.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/guix/scripts/pull.scm b/guix/scripts/pull.scm index 838ff24e9c..7402782ff3 100644 --- a/guix/scripts/pull.scm +++ b/guix/scripts/pull.scm @@ -458,10 +458,9 @@ true, display what would be built without actually building it." #:hooks %channel-profile-hooks) (return - (let ((more? (list (display-profile-news profile #:concise? #t) - (display-channel-news-headlines profile)))) + (let ((more? (display-channel-news-headlines profile))) (newline) - (when (any ->bool more?) + (when more? (display-hint (G_ "Run @command{guix pull --news} to read all the news."))))) (if guix-command |