Project

General

Profile

« Previous | Next » 

Revision 8650

bugfix: lib/util.run: echo_vars (): remove any value to set (=*) from the vars, since this is often used with export

View differences:

lib/util.run
39 39

  
40 40
echo_stdin () { tee -a /dev/stderr; } # usage: input|echo_stdin|cmd
41 41

  
42
echo_vars () { declare -p "$@" >&2; } # usage: echo_vars var...
42
echo_vars () { declare -p "${@%%=*}" >&2; } # usage: echo_vars var...
43 43

  
44 44
echo_export ()
45 45
{

Also available in: Unified diff