Merge "Double quote some statements for zsh compatibility"

This commit is contained in:
Vishwath Mohan
2016-05-23 22:17:35 +00:00
committed by Gerrit Code Review

View File

@@ -89,7 +89,7 @@ function get_abs_build_var()
{ {
if [ "$BUILD_VAR_CACHE_READY" = "true" ] if [ "$BUILD_VAR_CACHE_READY" = "true" ]
then then
eval echo \"\${abs_var_cache_$1}\" eval "echo \"\${abs_var_cache_$1}\""
return return
fi fi
@@ -107,7 +107,7 @@ function get_build_var()
{ {
if [ "$BUILD_VAR_CACHE_READY" = "true" ] if [ "$BUILD_VAR_CACHE_READY" = "true" ]
then then
eval echo \"\${var_cache_$1}\" eval "echo \"\${var_cache_$1}\""
return return
fi fi