Quote array index with -n so -n works properly

For some reason -n doesn't work with arrays, probably becuase
the array has an entry by the array's indexed value is empty.

By quoting it we get it as one unit, which behaves as expected.

Change-Id: Ic3243d13d3f8fc9978c460f816e33ad348302d8e
This commit is contained in:
Steven Dake 2015-02-23 12:45:20 -07:00
parent 04f70c5d7b
commit cebbd9fb7b

View File

@ -80,7 +80,7 @@ function init_image {
function process_image {
local image=$1
if [ -n ${dependency[$image]} ]; then
if [ -n "${dependency[$image]}" ]; then
process_image ${dependency[$image]}
fi
if requires_build $image; then