diff options
Diffstat (limited to 'libs')
-rwxr-xr-x | libs/project | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/project b/libs/project index bcb73f16..c2f0f764 100755 --- a/libs/project +++ b/libs/project @@ -17,7 +17,7 @@ PROJECT_ACTIONS_GENERIC=(usage download extract update build install release clean) PROJECT_ACTIONS_HELPERS=(arguments) -PROJECT_ACTIONS_FUNCTIONS=( +PROJECT_ACTIONS=( "${PROJECT_ACTIONS_GENERIC[@]}" "${PROJECT_ACTIONS_GENERIC[@]/%/_check}" "${PROJECT_ACTIONS_HELPERS[@]}" @@ -30,7 +30,7 @@ project_include() { local project_path=$( project_path "$project" ) - unset -f "${PROJECT_ACTIONS_FUNCTIONS[@]}" + unset -f "${PROJECT_ACTIONS[@]}" source "$project_path/$project" |