diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-01-21 00:10:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-01-21 00:14:38 +0100 |
commit | d4a562ba7ac4549cc2d57eff7f440026a2045f45 (patch) | |
tree | 87972e9b670779d66a1d1a00f023ee7cab1a1228 /guix/scripts/substitute.scm | |
parent | 98d3abe7440717724263cacca8c36e9f43d53fcc (diff) |
Revert "substitute: Remove extra 'newline' call."
This reverts commit d5a1b0e86f248edd53c785b910b5d51ee708b0fc.
This change turned out to be misguided; it would lead to "substitute:"
lines being printed on the client side, without anything beyond the
colon sign.
Diffstat (limited to 'guix/scripts/substitute.scm')
-rwxr-xr-x | guix/scripts/substitute.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/scripts/substitute.scm b/guix/scripts/substitute.scm index 2eefdb79d8..f9bcead045 100755 --- a/guix/scripts/substitute.scm +++ b/guix/scripts/substitute.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014 Nikita Karetnikov <nikita@karetnikov.org> ;;; Copyright © 2018 Kyle Meyer <kyle@kyleam.com> ;;; Copyright © 2020 Christopher Baines <mail@cbaines.net> @@ -500,6 +500,7 @@ port to it, or, if connection failed, print a warning and return #f. Pass #:port port)) '())) open-connection-for-uri/maybe))) + (newline (current-error-port)) result)) ((file #f) (let* ((base (string-append (uri-path uri) "/")) |