summaryrefslogtreecommitdiffstats
path: root/scripts/libmakepkg/executable/vcs.sh.in
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2020-06-02 23:50:24 +0200
committerAndrew Gregory <andrew@archlinux.org>2020-06-18 11:06:46 +0200
commitf4da297de252dcb00e6c83df00fea11c86606348 (patch)
treed822637c24449083791345eb57604c3ed433636c /scripts/libmakepkg/executable/vcs.sh.in
parent22e6daa79455b1c59ab73af9438ca0c1d2a884b9 (diff)
downloadpacman-f4da297de252dcb00e6c83df00fea11c86606348.tar.gz
pacman-f4da297de252dcb00e6c83df00fea11c86606348.tar.xz
libmakepkg: fix regression in sending plain() output to stderr
In commit 882e707e40bbade0111cf3bdedbdac4d4b70453b we changed message output to go to stdout by default, unless it was an error. The plain() function doesn't *look* like an error function, but in practice it was -- it's used to continue multiline messages, and all in-tree uses were for warning/error. This is a problem both because we're sending output to the wrong place, and because in some cases, we were performing error logging from a function which would otherwise return a value to be captured in a variable using command substution. Fix this and straighten out the API by providing two functions: one for continuing msg output, and one which wraps this by sending output to stderr, for continuing error output. Change all callers to use the second function. (cherry picked from commit bf458cced7c0845f7b6fabb887d3878ae4cd51b2)
Diffstat (limited to 'scripts/libmakepkg/executable/vcs.sh.in')
-rw-r--r--scripts/libmakepkg/executable/vcs.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/libmakepkg/executable/vcs.sh.in b/scripts/libmakepkg/executable/vcs.sh.in
index 6eb93fae..436b82db 100644
--- a/scripts/libmakepkg/executable/vcs.sh.in
+++ b/scripts/libmakepkg/executable/vcs.sh.in
@@ -43,7 +43,7 @@ get_vcsclient() {
# if we didn't find an client, return an error
if [[ -z $client ]]; then
error "$(gettext "Unknown download protocol: %s")" "$proto"
- plain "$(gettext "Aborting...")"
+ plainerr "$(gettext "Aborting...")"
exit $E_CONFIG_ERROR
fi