Skip to content

Commit

Permalink
Merge pull request #40 from upm-packages/fix/#39-support_space
Browse files Browse the repository at this point in the history
Surround quot for registry name
  • Loading branch information
monry authored Sep 5, 2019
2 parents 0b2ddce + 7c88192 commit 3e54963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lib/variable/registries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [ $length -ge 1 ]; then
for index in $( seq 1 ${length} )
do
registry_name=$(echo ${registry_names_json} | jq -r ".[$((index - 1))]")
REGISTRIES+=(${registry_name})
REGISTRIES+=("${registry_name}")
registry_list="${registry_list}[$((${index}))] ${registry_name}
"
done
Expand Down

0 comments on commit 3e54963

Please sign in to comment.