We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0371197 commit cfd0dc9Copy full SHA for cfd0dc9
1 file changed
scripts/soda/exec.sh
@@ -133,9 +133,12 @@ execute() {
133
# ${FUNCTION_NAME}-start: after call
134
# ${FUNCTION_NAME}-finish: before call
135
#
136
+# This method is intented to use for task call
137
+#
138
call() {
- local function_name="$1"
139
+ local function_name="$(build_name $1)"
140
+ shift
141
broadcast "${function_name}-start"
- "$@"
142
+ $function_name "$@"
143
broadcast "${function_name}-finish"
144
}
0 commit comments