diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 55b3e88f..ef00302e 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -138,7 +138,9 @@ jobs: # Package again and build+upload the .vsix - name: Remove exe directory (Windows) - run: Remove-Item -Path "extension/server/exe" -Recurse -Force + run: | + FOR /F "tokens=5" %a IN ('netstat -ano ^| findstr "65432"') DO taskkill /PID %a /F + Remove-Item -Path "extension/server/exe" -Recurse -Force if: matrix.os == 'windows-latest' - name: Remove exe directory (Mac/Linux) |