1
0
mirror of https://github.com/go-task/task.git synced 2025-11-23 22:24:45 +02:00

rename func: ReplaceVariables -> CompiledTask

This commit is contained in:
Andrey Nering
2017-07-30 19:34:28 -03:00
parent bb1aff84cf
commit 70ef9fbcfe
2 changed files with 4 additions and 4 deletions

View File

@@ -124,7 +124,7 @@ func (e *Executor) RunTask(ctx context.Context, call Call) error {
return err
}
t, err := origTask.ReplaceVariables(vars)
t, err := origTask.CompiledTask(vars)
if err != nil {
return err
}
@@ -140,7 +140,7 @@ func (e *Executor) RunTask(ctx context.Context, call Call) error {
if err != nil {
return err
}
t, err = origTask.ReplaceVariables(vars)
t, err = origTask.CompiledTask(vars)
if err != nil {
return err
}