diff options
Diffstat (limited to 'libs')
-rwxr-xr-x | libs/project | 8 |
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 } |