From a52a66ec1c3afc31eeed089434198c4a9e723007 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 5 Jul 2017 20:12:40 -0300 Subject: [PATCH] test usage of param with $ prefix --- testdata/params/Taskfile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testdata/params/Taskfile.yml b/testdata/params/Taskfile.yml index 4de09f2b..d04620a7 100644 --- a/testdata/params/Taskfile.yml +++ b/testdata/params/Taskfile.yml @@ -8,7 +8,7 @@ default: - task: write-file vars: {CONTENT: Hello, FILE: hello.txt} - task: write-file - vars: {CONTENT: World, FILE: world.txt} + vars: {CONTENT: "$echo 'World'", FILE: world.txt} - task: write-file vars: {CONTENT: "!", FILE: exclamation.txt}