tags: remove windows tag, improve improve

This commit is contained in:
Jozef Steinhübl 2024-05-13 22:44:26 +02:00
parent a3f7263489
commit 52b5aa29a2
No known key found for this signature in database
GPG key ID: E6BC90C91973B08F
2 changed files with 4 additions and 13 deletions

View file

@ -22,7 +22,10 @@ curl -fsSL https://bun.sh/install.sh | bash
curl -fsSL https://bun.sh/install.sh | bash -s "bun-v1.0.0"
```
If you're on **Windows**, you can install experimental build of bun using the following command:
If you're on **Windows**, you can install bun using the following command:
```ps
powershell -c "irm bun.sh/install.ps1|iex"
# or if you want specific version
powershell -c "& {$(irm bun.sh/install.ps1)} -Version 1.1.4"
```

View file

@ -1,12 +0,0 @@
---
question: "Where can i find windows version of bun?"
keywords:
- "windows"
- "windows support"
---
Bun provides a native builds for [Windows](<https://bun.sh/docs/installation#windows>).
To install, paste this into your terminal:
```ps
powershell -c "irm bun.sh/install.ps1|iex"
```