Commit c4d9343
authored
ci: fix log template pipeline variable expansion (#4385)
fix log template pipeline variable expansion
$(acnLogs) is a pipeline variable, $acnLogs is a bash variable
echo "##vso[task.setvariable variable=acnLogs]$acnLogs" sets the pipeline var
$acnLogs the bash variable was not set in the task, so it resolved to empty (bad)
$(acnLogs) is replaced with the pipeline variable val prior to the script running1 parent ab1d877 commit c4d9343
1 file changed
Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
112 | 112 | | |
113 | 113 | | |
114 | 114 | | |
115 | | - | |
116 | | - | |
| 115 | + | |
| 116 | + | |
117 | 117 | | |
118 | 118 | | |
119 | | - | |
120 | | - | |
| 119 | + | |
| 120 | + | |
121 | 121 | | |
122 | 122 | | |
123 | 123 | | |
| |||
0 commit comments