diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-11-14 22:30:30 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-11-14 23:12:32 +0100 |
commit | a90d8e0ff82f01af1fb629472b2e5f459c624b08 (patch) | |
tree | c20819b0f7685ca61b908ccdcdaaa7fc3cb1082a | |
parent | _emerge.main.emerge_main(): Make locale variables from configuration files af... (diff) | |
download | portage-a90d8e0ff82f01af1fb629472b2e5f459c624b08.tar.gz portage-a90d8e0ff82f01af1fb629472b2e5f459c624b08.tar.bz2 portage-a90d8e0ff82f01af1fb629472b2e5f459c624b08.zip |
eapply: Fix typo
Reviewed-by: Zac Medico <zmedico@gentoo.org>
-rw-r--r-- | bin/phase-helpers.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh index b79884f5e..0f79fc175 100644 --- a/bin/phase-helpers.sh +++ b/bin/phase-helpers.sh @@ -1037,7 +1037,8 @@ if ___eapi_has_eapply; then die "eapply: no files specified" fi - for i in "${files[@]}"; do + local f + for f in "${files[@]}"; do if [[ -d ${f} ]]; then _eapply_get_files() { local LC_ALL=POSIX |