diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-01-12 23:14:58 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-01-12 23:28:45 +0100 |
commit | 4cdff6ae37878588a550e5969381d531c728e2fd (patch) | |
tree | 17896493028fee9c3c2dca563e4676c1aa4cdfb3 | |
parent | 08b98ae8d3a8a5f74f0c7f77502e8be790487c29 (diff) | |
download | patches-4cdff6ae37878588a550e5969381d531c728e2fd.tar patches-4cdff6ae37878588a550e5969381d531c728e2fd.tar.gz |
challenge: Use a warning when substitutes are lacking.
* guix/scripts/challenge.scm (discrepancies): Use 'warning' instead of
'leave'.
-rw-r--r-- | guix/scripts/challenge.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/challenge.scm b/guix/scripts/challenge.scm index 590d8f1099..9ab4fbe2a9 100644 --- a/guix/scripts/challenge.scm +++ b/guix/scripts/challenge.scm @@ -118,7 +118,7 @@ taken since we do not import the archives." (select-reference item narinfos urls) (narinfo-hash->sha256 (narinfo-hash first)))))) (() - (leave (_ "no substitutes for '~a'~%") item)))) + (warning (_ "no substitutes for '~a'; cannot conclude~%") item)))) (mlet* %store-monad ((local (mapm %store-monad query-locally-built-hash items)) |