commit | 9539f71675c40485e448efb3c4e06afc8d102f94 | [log] [tgz] |
---|---|---|
author | Sean Anderson <seanga2@gmail.com> | Sun Feb 28 16:29:51 2021 -0500 |
committer | Tom Rini <trini@konsulko.com> | Mon Apr 12 17:17:11 2021 -0400 |
tree | e4a3d2be937c6593a057e8a8a077645f2af09d40 | |
parent | c146de48727da66ea7dc43f12bd41814cff2faa8 [diff] |
hush: Fix assignments being misinterpreted as commands If there were no variable substitutions in a command, then initial assignments would be misinterpreted as commands, instead of being skipped over. This is demonstrated by the following example: => foo=bar echo baz Unknown command 'foo=bar' - try 'help' Signed-off-by: Sean Anderson <seanga2@gmail.com>