diff options
author | Florian Pelz <pelzflorian@pelzflorian.de> | 2020-11-14 23:36:52 +0100 |
---|---|---|
committer | Florian Pelz <pelzflorian@pelzflorian.de> | 2020-11-16 13:44:29 +0000 |
commit | 29ed17d6345d30b0646f0a9b63ab201e0e6871ec (patch) | |
tree | 6fa481b3237eeb08babe0e90fe7b5be776e3cb84 /guix/scripts | |
parent | 98750a9d9967b84a077735a2e4e6d5526256a5fd (diff) |
pull: Do not suggest running `guix pull --news' on the first run.
* guix/scripts/pull.scm (display-channel-news-headlines): If there
are no news to display, return false instead of <unspecified>.
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/pull.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/pull.scm b/guix/scripts/pull.scm index bb1b560a22..7fd8b3f1a4 100644 --- a/guix/scripts/pull.scm +++ b/guix/scripts/pull.scm @@ -385,7 +385,7 @@ previous generation. Return true if there are news to display." (and=> (relative-generation profile -1) (cut generation-file-name profile <>))) - (when previous + (and previous (let ((old-channels (profile-channels previous)) (new-channels (profile-channels profile))) ;; Find the channels present in both PROFILE and PREVIOUS, and print |