summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-08-09 21:25:55 -0700
committerNate Sesti <sestinj@gmail.com>2023-08-09 21:25:55 -0700
commit64552dc881509c46aa14253ff94aee9d86ade256 (patch)
treefa12dc5ce0593b3d4d29d82f10f7d3597a8f7e1c /.github/workflows
parent08b1cfdd2f6f456df7344c16f5d229a0ccfb841b (diff)
downloadsncontinue-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.yaml2
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)