diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 27b802e7..55b3e88f 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -138,7 +138,7 @@ jobs: # Package again and build+upload the .vsix - name: Remove exe directory (Windows) - run: rmdir /s /q extension/server/exe + run: Remove-Item -Path "extension/server/exe" -Recurse -Force if: matrix.os == 'windows-latest' - name: Remove exe directory (Mac/Linux) |