debian: build-docker-images: add missing quotes

build-stx-base.sh: add quotes when saving the --repo arguments since in
debian this parameter may contain spaces.

TESTS
========================
Rebuild base image in debian and make sure it generates the
stx.sources.list file correctly, including white space.

Story: 2009897
Task: 45212

Signed-off-by: Davlet Panech <davlet.panech@windriver.com>
Change-Id: Ibd55c827b259024358097a59c49f797d6dcd9ae9
This commit is contained in:
Davlet Panech 2022-04-28 16:26:42 -04:00
parent 60f1aab819
commit d6dd5faafb

View File

@ -154,7 +154,7 @@ while true; do
shift 2
;;
--repo)
REPO_LIST+=($2)
REPO_LIST+=("$2")
shift 2
;;
--local)