Browse Source

ci: actually kill leftover processes on WOA testing (#20286)

John Kleinschmidt 5 years ago
parent
commit
6f2fe7560a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      azure-pipelines-woa.yml

+ 2 - 2
azure-pipelines-woa.yml

@@ -78,7 +78,7 @@ steps:
   displayName: 'Verify ffmpeg'
 
 - powershell: |
-    Get-Process | Where Name –Like "electron.exe*" | Stop-Process
-    Get-Process | Where Name –Like "MicrosoftEdge.exe*" | Stop-Process
+    Get-Process | Where Name –Like "electron*" | Stop-Process
+    Get-Process | Where Name –Like "MicrosoftEdge*" | Stop-Process
   displayName: 'Kill processes left running from last test run'
   condition: always()