Skip to content

Commit cfdbcc3

Browse files
authored
Update Windows installation instructions for zip artifact format (#25)
1 parent 95d6ace commit cfdbcc3

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

install.markdown

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,16 @@ Make sure you have [git](https://git-scm.com/) installed. Then run this command
1919
## Windows
2020

2121
1. Install [Git for Windows](https://git-scm.com/download/win).
22-
2. Open the **Git CMD** app from your Start menu.
22+
2. Open **PowerShell** from your Start menu.
2323
3. Run these commands:
2424

2525
```powershell
26-
md "%USERPROFILE%\loda\bin"
27-
cd "%USERPROFILE%\loda\bin"
28-
curl -fsSLo loda.exe https://github.com/loda-lang/loda-cpp/releases/latest/download/loda-windows-x86.exe
29-
loda setup
26+
md "$env:USERPROFILE\loda\bin"
27+
cd "$env:USERPROFILE\loda\bin"
28+
Invoke-WebRequest -Uri https://github.com/loda-lang/loda-cpp/releases/latest/download/loda-windows-x86.zip -OutFile loda.zip
29+
Expand-Archive -Path loda.zip -DestinationPath .
30+
del loda.zip
31+
.\loda setup
3032
```
3133

3234
## Getting Started

0 commit comments

Comments
 (0)