diff options
author | Maxim Cournoyer <[email protected]> | 2024-12-15 15:49:46 +0900 |
---|---|---|
committer | Maxim Cournoyer <[email protected]> | 2024-12-18 16:27:09 +0900 |
commit | dc3b526bad2f865b407580888f9b90afacac818f (patch) | |
tree | 1e993a2033d0bc7b6db100a4bc665abd73ba8402 | |
parent | 0a5b060be1e8966abc45e4782df83447510a90b4 (diff) |
scripts/substitute: Refine 'updating substitutes' message.
* guix/scripts/substitute.scm (process-query): Attempt to precise the 'update
substitutes' message.
Suggested-by: Tobias Geerinckx-Rice <[email protected]>
Reported-by: Felix Lechner <[email protected]>
Reviewed-by: Ludovic Courtès <[email protected]>
Change-Id: I7b3f93f32b73a6a6175a035a09ab51a6e74e384b
-rwxr-xr-x | guix/scripts/substitute.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/substitute.scm b/guix/scripts/substitute.scm index 8db730a9c0..ab18104e0a 100755 --- a/guix/scripts/substitute.scm +++ b/guix/scripts/substitute.scm @@ -328,7 +328,7 @@ authorized substitutes." (erase-current-line (current-error-port)) ;erase current line (force-output (current-error-port)) (format (current-error-port) - (G_ "updating substitutes from '~a'... ~5,1f%") + (G_ "looking for substitutes on '~a'... ~5,1f%") url (* 100. (/ done total))) (set! done (+ 1 done))) |