Merge "Double quote some statements for zsh compatibility"
am: 576fd3ebb9
* commit '576fd3ebb92d2200ea8c02cd6f3b7ba21ced9030':
Double quote some statements for zsh compatibility
Change-Id: I30ff4c9d527907772d11d557097fafb2cbeeb590
This commit is contained in:
commit
29c2c4db19
1 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ function get_abs_build_var()
|
|||
{
|
||||
if [ "$BUILD_VAR_CACHE_READY" = "true" ]
|
||||
then
|
||||
eval echo \"\${abs_var_cache_$1}\"
|
||||
eval "echo \"\${abs_var_cache_$1}\""
|
||||
return
|
||||
fi
|
||||
|
||||
|
@ -107,7 +107,7 @@ function get_build_var()
|
|||
{
|
||||
if [ "$BUILD_VAR_CACHE_READY" = "true" ]
|
||||
then
|
||||
eval echo \"\${var_cache_$1}\"
|
||||
eval "echo \"\${var_cache_$1}\""
|
||||
return
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue