Splitting occurs implicitly

This commit is contained in:
Horea Christian 2023-05-23 19:16:41 -04:00
parent 4ba02d1497
commit c984d8513d
2 changed files with 2 additions and 2 deletions

View file

@ -130,7 +130,7 @@ then
if ((HAS_PORTAGEQ))
then
PORTAGEQ_REPOS=$(portageq get_repos /)
for i in ${PORTAGEQ_REPOS[@]}; do
for i in ${PORTAGEQ_REPOS}; do
EXCLUDES+=("--exclude=$(portageq get_repo_path / ${i})/*")
done
EXCLUDES+=("--exclude=$(portageq distdir)/*")

View file

@ -213,7 +213,7 @@ then
if ((HAS_PORTAGEQ))
then
PORTAGEQ_REPOS=$(portageq get_repos /)
for i in ${PORTAGEQ_REPOS[@]}; do
for i in ${PORTAGEQ_REPOS}; do
EXCLUDES+=("--exclude=$(portageq get_repo_path / ${i})/*")
done
EXCLUDES+=("--exclude=$(portageq distdir)/*")