summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2015-11-12 22:43:34 +0100
committerMichał Górny <mgorny@gentoo.org>2015-11-12 22:43:34 +0100
commit00f69aed235e207c15a8fa906b33674fd90bee88 (patch)
tree348fe30a09fe3d8694a903838b620e31605e76c6
parentegencache: fix results when GIT_DIR is used in the environment. (diff)
downloadportage-00f69aed235e207c15a8fa906b33674fd90bee88.tar.gz
portage-00f69aed235e207c15a8fa906b33674fd90bee88.tar.bz2
portage-00f69aed235e207c15a8fa906b33674fd90bee88.zip
bin/phase-helpers: Fix accidental syntax error
-rw-r--r--bin/phase-helpers.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh
index 546973e3b..b79884f5e 100644
--- a/bin/phase-helpers.sh
+++ b/bin/phase-helpers.sh
@@ -1026,11 +1026,11 @@ if ___eapi_has_eapply; then
done
# ensure that no options were interspersed with files
- for i in "${files[@]}"; then
+ for i in "${files[@]}"; do
if [[ ${i} == -* ]]; then
die "eapply: all options must be passed before non-options"
fi
- fi
+ done
fi
if [[ -z ${files[@]} ]]; then