Revision 8955
Added by Aaron Marcuse-Kubitza almost 12 years ago
lib/util.sh | ||
---|---|---|
85 | 85 |
(log_stderr |
86 | 86 |
if test -n "$stdout2stderr"; then stdout2stderr; fi |
87 | 87 |
"$@" |
88 |
) || exit
|
|
88 |
) || return
|
|
89 | 89 |
} |
90 | 90 |
|
91 | 91 |
echo_cmd () { if can_log; then echo "$PS4$*" >&2; fi; } |
Also available in: Unified diff
lib/util.sh: log_stderr_cmd (): replaced the `|| exit` after the () with `|| return`, for the same reason that this was a problem for extern () (see r8954)