Fix quoting of local variable assignments throughout.
authorBrett Smith <brett@curoverse.com>
Sat, 2 Jan 2016 00:09:08 +0000 (19:09 -0500)
committerBrett Smith <brett@curoverse.com>
Mon, 11 Jan 2016 22:13:04 +0000 (17:13 -0500)
commit0814135175ab777abe515e4ba404dd0bf2929b24
treefc97107885a72964c4c818553504a9701cc3a888
parent9f73adf4a13fef44dd133b91c46693aea1af69df
Fix quoting of local variable assignments throughout.

When you assign a variable directly (e.g., `FOO=bar`), you don't need
to quote the RHS, because the shell doesn't do expansion in that
case.  But when you declare and assign a variable (e.g., `local
foo=bar`), you *do* potentially need to quote it, because `local` is a
command and all the normal expansion rules for running commands
applies.
jenkins/run-library.sh
jenkins/run-tests.sh