diff options
-rwxr-xr-x | bin/ebuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 8a0adf742..2a434ef75 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1514,7 +1514,7 @@ source_all_bashrcs() { IFS=$'\n' local path_array=($PROFILE_PATHS) restore_IFS - for x in ${path_array[@]} ; do + for x in "${path_array[@]}" ; do [ -f "${x}/profile.bashrc" ] && qa_source "${x}/profile.bashrc" done |