From d89f19d984591f79b24eb9196b61aec049a6e2c7 Mon Sep 17 00:00:00 2001 From: sawka Date: Fri, 2 May 2025 13:36:15 -0700 Subject: [PATCH] fix taskfile rm command to use powershell --- Taskfile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Taskfile.yml b/Taskfile.yml index 9acbf85938..c5c7653493 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -8,7 +8,7 @@ vars: BIN_DIR: "bin" VERSION: sh: node version.cjs - RM: '{{if eq OS "windows"}}cmd --% /c del /S{{else}}rm {{end}}' + RM: '{{if eq OS "windows"}}powershell Remove-Item -Force{{else}}rm{{end}}' RMRF: '{{if eq OS "windows"}}powershell Remove-Item -Force -Recurse{{else}}rm -rf{{end}}' DATE: '{{if eq OS "windows"}}powershell Get-Date -UFormat{{else}}date{{end}}' ARTIFACTS_BUCKET: waveterm-github-artifacts/staging-w2