commit: ff3c182bb79a5ef745914ccf31c7eaa9060675e7
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 22 08:09:50 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 22 08:13:55 2025 +0000
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcore.git/commit/?id=ff3c182b
test something
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
data/lib/pkgcore/ebd/ebuild-daemon.bash | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/data/lib/pkgcore/ebd/ebuild-daemon.bash
b/data/lib/pkgcore/ebd/ebuild-daemon.bash
index 354f7ff0..edf9e59f 100644
--- a/data/lib/pkgcore/ebd/ebuild-daemon.bash
+++ b/data/lib/pkgcore/ebd/ebuild-daemon.bash
@@ -381,11 +381,11 @@ __ebd_main_loop() {
[[ ${com} == gen_ebuild_env* ]] &&
__mode="generate_env"
line=${com#* }
# capture sourcing stderr output
- error_output=$(__ebd_process_metadata "${line}"
"${__mode}" 2>&1 1>/dev/null)
+ error_output=$(__ebd_process_metadata "${line}"
"${__mode}")
if [[ $? -eq 0 ]]; then
__ebd_write_line "phases succeeded"
else
- [[ -n ${error_output} ]] ||
error_output="ebd::${com% *} failed"
+ [[ -n ${error_output} ]] ||
error_output="ebd::${com% *} [__ebd_process_metadata \"${line}\" \"${__mode}\"]
failed" # here
__ebd_write_line "phases failed
${error_output}"
fi
;;