aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Robbins <contact@andrewrobbins.info>2017-07-22 01:58:23 -0400
committerAndrew Robbins <contact@andrewrobbins.info>2017-07-22 01:58:23 -0400
commit4aff8835cdd469f94a3ed30bfc3f0c0e3badd96f (patch)
treeda7bbe546e6f13157f832bca2c8cb6596f59851f
parent5e3dcd8f29cf4ad653e69d50e1500a330bba8ca8 (diff)
downloadlibrebootfr-4aff8835cdd469f94a3ed30bfc3f0c0e3badd96f.tar.gz
librebootfr-4aff8835cdd469f94a3ed30bfc3f0c0e3badd96f.zip
Remove unnecessary subshell grouping
-rwxr-xr-xlibs/project8
1 files changed, 3 insertions, 5 deletions
diff --git a/libs/project b/libs/project
index 728b9118..2efd7afb 100755
--- a/libs/project
+++ b/libs/project
@@ -199,12 +199,10 @@ project_action_arguments_recursive() {
for argument in $(printf '%s\n' "${action_helper_arguments}")
do
- (
- IFS="${ifs_save}"
+ IFS="${ifs_save}"
- # Only a single argument at a time is returned by the helper.
- project_action_arguments_recursive "${action}" "${project}" "$@" "${argument}"
- )
+ # Only a single argument at a time is returned by the helper.
+ project_action_arguments_recursive "${action}" "${project}" "$@" "${argument}"
done
fi
}