1
0
mirror of https://github.com/go-task/task.git synced 2025-06-25 00:47:04 +02:00

Rename "variables" key to "vars" for brevity

This commit is contained in:
Andrey Nering
2017-03-05 15:56:07 -03:00
parent 3aaf1b2ec1
commit fa850d1440
3 changed files with 6 additions and 6 deletions

View File

@ -18,7 +18,7 @@ var (
func (t Task) handleVariables() (map[string]string, error) {
localVariables := make(map[string]string)
for key, value := range t.Variables {
for key, value := range t.Vars {
localVariables[key] = value
}
if fileVariables, err := readVariablefile(); err == nil {