Skip to content

Commit 2bd2a46

Browse files
authored
try fixing rm on windows again (#2155)
1 parent 01efa43 commit 2bd2a46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Taskfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ vars:
88
BIN_DIR: "bin"
99
VERSION:
1010
sh: node version.cjs
11-
RM: '{{if eq OS "windows"}}powershell Remove-Item -Force{{else}}rm{{end}}'
12-
RMRF: '{{if eq OS "windows"}}powershell Remove-Item -Force -Recurse{{else}}rm -rf{{end}}'
11+
RM: '{{if eq OS "windows"}}powershell Remove-Item -Force -ErrorAction SilentlyContinue{{else}}rm -f{{end}}'
12+
RMRF: '{{if eq OS "windows"}}powershell Remove-Item -Force -Recurse -ErrorAction SilentlyContinue{{else}}rm -rf{{end}}'
1313
DATE: '{{if eq OS "windows"}}powershell Get-Date -UFormat{{else}}date{{end}}'
1414
ARTIFACTS_BUCKET: waveterm-github-artifacts/staging-w2
1515
RELEASES_BUCKET: dl.waveterm.dev/releases-w2

0 commit comments

Comments
 (0)