77da4a95e8
This affects scripts named on the command line, named with a '.' special builtin and found via the PATH %func autoloading mechanism. PR: 231986
6 lines
112 B
Plaintext
6 lines
112 B
Plaintext
# $FreeBSD$
|
|
|
|
{ stderr=$(${SH} /var/empty/nosuchscript 2>&1 >&3); } 3>&1
|
|
r=$?
|
|
[ -n "$stderr" ] && [ "$r" = 127 ]
|