mirror of
https://github.com/erenfro/gen2stage4.git
synced 2024-11-13 02:38:57 -05:00
Allegedly safer quoting style as per shellcheck 🤔
This commit is contained in:
parent
7cc88f2700
commit
173f0fb249
2 changed files with 2 additions and 2 deletions
|
@ -130,7 +130,7 @@ then
|
|||
then
|
||||
PORTAGEQ_REPOS=$(portageq get_repos /)
|
||||
for i in ${PORTAGEQ_REPOS}; do
|
||||
EXCLUDES+=(--exclude=$(portageq get_repo_path / "${i}")/*)
|
||||
EXCLUDES+=("--exclude="$(portageq get_repo_path / "${i}")/*)
|
||||
done
|
||||
EXCLUDES+=("--exclude=$(portageq distdir)/*")
|
||||
else
|
||||
|
|
|
@ -214,7 +214,7 @@ then
|
|||
then
|
||||
PORTAGEQ_REPOS=$(portageq get_repos /)
|
||||
for i in ${PORTAGEQ_REPOS}; do
|
||||
EXCLUDES+=("--exclude=$(portageq get_repo_path / ${i})/*")
|
||||
EXCLUDES+=("--exclude="$(portageq get_repo_path / "${i}")/*)
|
||||
done
|
||||
EXCLUDES+=("--exclude=$(portageq distdir)/*")
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue