Skip to content

Commit a1d7e49

Browse files
authored
fix taskfile rm command to use powershell (#2154)
1 parent efbf9bf commit a1d7e49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ vars:
88
BIN_DIR: "bin"
99
VERSION:
1010
sh: node version.cjs
11-
RM: '{{if eq OS "windows"}}cmd --% /c del /S{{else}}rm {{end}}'
11+
RM: '{{if eq OS "windows"}}powershell Remove-Item -Force{{else}}rm{{end}}'
1212
RMRF: '{{if eq OS "windows"}}powershell Remove-Item -Force -Recurse{{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

0 commit comments

Comments
 (0)