aboutsummaryrefslogtreecommitdiff
path: root/libs/project
diff options
context:
space:
mode:
Diffstat (limited to 'libs/project')
-rwxr-xr-xlibs/project12
1 files changed, 8 insertions, 4 deletions
diff --git a/libs/project b/libs/project
index 2b6fc2fd..b9d33114 100755
--- a/libs/project
+++ b/libs/project
@@ -200,11 +200,15 @@ project_action_helper() {
local project="$1"
shift
- if ! function_check "$helper"; then
- return 0
- fi
+ (
+ project_include "$project"
- "$helper" "$@"
+ if ! function_check "$helper"; then
+ exit 0
+ fi
+
+ "$helper" "$@"
+ )
}
project_action_arguments() {