Skip to content

Commit b5400bb

Browse files
authored
Merge branch 'wdl-1.2.1' into fix-test
2 parents 8c99d06 + 7840869 commit b5400bb

File tree

1 file changed

+31
-30
lines changed

1 file changed

+31
-30
lines changed

SPEC.md

Lines changed: 31 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4081,49 +4081,50 @@ task test {
40814081
output {
40824082
String out = read_string(stdout())
40834083
}
4084-
}
40854084
4086-
workflow environment_variable_should_echo {
4087-
input {
4088-
String greeting
4089-
}
4090-
4091-
call test {
4092-
input: greeting = greeting
4093-
}
4094-
4095-
output {
4096-
String out = test.out
4085+
workflow environment_variable_should_echo {
4086+
input {
4087+
String greeting
4088+
}
4089+
4090+
call test {
4091+
input: greeting = greeting
4092+
}
4093+
4094+
output {
4095+
String out = test.out
4096+
}
40974097
}
40984098
}
40994099
```
41004100
</summary>
41014101
<p>
41024102
Example input:
41034103

4104-
```json
4105-
{
4106-
"environment_variable_should_echo.greeting": "hello"
4107-
}
4108-
```
41094104

4110-
Example output:
4105+
```json
4106+
{
4107+
"environment_variable_should_echo.greeting": "hello"
4108+
}
4109+
```
41114110

4112-
```json
4113-
{
4114-
"environment_variable_should_echo.out": "hello"
4115-
}
4116-
```
4111+
Example output:
41174112

4118-
Test config:
4113+
```json
4114+
{
4115+
"environment_variable_should_echo.out": "hello"
4116+
}
4117+
```
41194118

4120-
```json
4121-
{
4122-
"fail": false
4123-
}
4124-
```
4119+
Test config:
41254120

4126-
</p>
4121+
```json
4122+
{
4123+
"fail": false
4124+
}
4125+
```
4126+
4127+
</p>
41274128
</details>
41284129

41294130
#### String Escaping and Injection Prevention

0 commit comments

Comments
 (0)