File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
env-container-with(special)chars.nf
env-container-with(special)chars.nf Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ process foo {
2525 input:
2626 env BAR
2727 '''
28- env | sort
28+ env | grep -E "^(FOO|BAR)" | sort
2929 hello.sh
3030 '''
3131}
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ process foo {
2525 input:
2626 env BAR
2727 '''
28- env | sort
28+ env | grep -E "^(FOO|BAR)" | sort
2929 hello.sh
3030 '''
3131}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ process foo {
2626 env 'BAR'
2727 script:
2828 '''
29- env | sort
29+ env | grep -E "^(FOO|BAR)" | sort
3030 hello.sh
3131 '''
3232}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ process foo {
2626 env 'BAR'
2727 script:
2828 '''
29- env | sort
29+ env | grep -E "^(FOO|BAR)" | sort
3030 hello.sh
3131 '''
3232}
You can’t perform that action at this time.
0 commit comments