Commit c2d6b71
fix(updater): Convert shell commands to PowerShell in workflow checkout step
The workflow was failing because it used shell syntax (bash) in a PowerShell context.
Converted the shell commands to proper PowerShell equivalents:
- Variable assignment using PowerShell syntax
- mkdir -> New-Item with -Force flag
- cd -> Set-Location
- regex replacement using PowerShell -replace operator
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 758c299 commit c2d6b71
1 file changed
+4
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
137 | 137 | | |
138 | 138 | | |
139 | 139 | | |
140 | | - | |
141 | | - | |
142 | | - | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
143 | 143 | | |
144 | 144 | | |
145 | | - | |
| 145 | + | |
146 | 146 | | |
147 | 147 | | |
148 | 148 | | |
| |||
0 commit comments