From 52b5aa29a25df2c5df8ed5724ddd22714d6f31bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Mon, 13 May 2024 22:44:26 +0200 Subject: [PATCH] tags: remove windows tag, improve improve --- data/tags/install.md | 5 ++++- data/tags/windows.md | 12 ------------ 2 files changed, 4 insertions(+), 13 deletions(-) delete mode 100644 data/tags/windows.md diff --git a/data/tags/install.md b/data/tags/install.md index 5bc0613..e6835a4 100644 --- a/data/tags/install.md +++ b/data/tags/install.md @@ -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" ``` \ No newline at end of file diff --git a/data/tags/windows.md b/data/tags/windows.md deleted file mode 100644 index caf8fd1..0000000 --- a/data/tags/windows.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -question: "Where can i find windows version of bun?" -keywords: - - "windows" - - "windows support" ---- - -Bun provides a native builds for [Windows](). -To install, paste this into your terminal: -```ps -powershell -c "irm bun.sh/install.ps1|iex" -```