File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -79,10 +79,10 @@ jobs:
79
79
80
80
if( $LINT_RESULT.Count -gt 0) {
81
81
$LINT_RESULT | ForEach-Object {
82
- echo ("code: " + $_.code)
83
- echo ("message: " + $_.message)
84
- echo ("path: " + $_.path)
85
- echo "`n"
82
+ Write-Host ("code: " + $_.code)
83
+ Write-Host ("message: " + $_.message)
84
+ Write-Host ("path: " + $($ _.path -join ".") )
85
+ Write-Host "`n"
86
86
}
87
87
exit 1
88
88
}
Original file line number Diff line number Diff line change @@ -93,10 +93,10 @@ jobs:
93
93
94
94
if( $LINT_RESULT.Count -gt 0) {
95
95
$LINT_RESULT | ForEach-Object {
96
- echo ("code: " + $_.code)
97
- echo ("message: " + $_.message)
98
- echo ("path: " + $_.path)
99
- echo "`n"
96
+ Write-Host ("code: " + $_.code)
97
+ Write-Host ("message: " + $_.message)
98
+ Write-Host ("path: " + $($ _.path -join ".") )
99
+ Write-Host "`n"
100
100
}
101
101
exit 1
102
102
}
You can’t perform that action at this time.
0 commit comments