Fix build-iso

build-iso failes to install any rpms into the iso.

A stray 'i' prevented correct evaluation of the size of array
DEP_LIST_ARRAY.

Closes-Bug: 1928945
Signed-off-by: Scott Little <scott.little@windriver.com>
Change-Id: I18d9ace7d1851ee74936cba1fe61bbbdac306c62
This commit is contained in:
Scott Little 2021-05-19 09:37:22 -04:00
parent 6ae19b9c18
commit 13d213dc46
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ function install_deps {
echo "Debug: List of deps to resolve: ${DEP_LIST_ARRAY[@]}"
if [ ${#DEP_LIST_ARRAYi[@]} -eq 0 ]; then
if [ ${#DEP_LIST_ARRAY[@]} -eq 0 ]; then
return 0
fi