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

Change "@" for "$" as dynamic var identifier

This commit is contained in:
Andrey Nering
2017-03-08 18:32:32 -03:00
parent d55eb98477
commit 3078a3ee68
2 changed files with 12 additions and 2 deletions

View File

@ -23,7 +23,7 @@ func handleDynamicVariableContent(value string) (string, error) {
if value == "" {
return value, nil
}
if value[0] != '@' {
if value[0] != '$' {
return value, nil
}
var cmd *exec.Cmd