summaryrefslogtreecommitdiff
path: root/guix/scripts/substitute.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2018-06-12 10:30:30 +0200
committerLudovic Courtès <ludo@gnu.org>2018-06-12 15:23:34 +0200
commit2bf9351e311cce0004756890b93f50693f133bb6 (patch)
tree11c1294197003f982b992ef5f926ed7ef1b5e78c /guix/scripts/substitute.scm
parent4c97a368a698ccf89113a258e8cf5e7947fbcc08 (diff)
downloadguix-patches-2bf9351e311cce0004756890b93f50693f133bb6.tar
guix-patches-2bf9351e311cce0004756890b93f50693f133bb6.tar.gz
substitute: Make progress message shorter.
* guix/scripts/substitute.scm (fetch-narinfos)[update-progress!]: Shorten progress message so it fits on 80 columns.
Diffstat (limited to 'guix/scripts/substitute.scm')
-rwxr-xr-xguix/scripts/substitute.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/substitute.scm b/guix/scripts/substitute.scm
index ab52245e8e..d0beacc8ea 100755
--- a/guix/scripts/substitute.scm
+++ b/guix/scripts/substitute.scm
@@ -616,7 +616,7 @@ if file doesn't exist, and the narinfo otherwise."
(display "\r\x1b[K" (current-error-port)) ;erase current line
(force-output (current-error-port))
(format (current-error-port)
- (G_ "updating list of substitutes from '~a'... ~5,1f%")
+ (G_ "updating substitutes from '~a'... ~5,1f%")
url (* 100. (/ done total)))
(set! done (+ 1 done)))))