diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-09 21:25:55 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-09 21:25:55 -0700 |
commit | 64552dc881509c46aa14253ff94aee9d86ade256 (patch) | |
tree | fa12dc5ce0593b3d4d29d82f10f7d3597a8f7e1c /.github/workflows | |
parent | 08b1cfdd2f6f456df7344c16f5d229a0ccfb841b (diff) | |
download | sncontinue-64552dc881509c46aa14253ff94aee9d86ade256.tar.gz sncontinue-64552dc881509c46aa14253ff94aee9d86ade256.tar.bz2 sncontinue-64552dc881509c46aa14253ff94aee9d86ade256.zip |
fix: :bug: use powershell remove-item
Diffstat (limited to '.github/workflows')
-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) |