From 61a8ce056859678f7e5cfb0408a6a9675a75efde Mon Sep 17 00:00:00 2001 From: swilson-fly <123485058+swilson-fly@users.noreply.github.com> Date: Thu, 16 May 2024 13:13:13 -0400 Subject: [PATCH] Update README.md Add instructions for installing a specific flyctl version on windows. --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1520dd7fd2..b288f72f75 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ curl -L https://fly.io/install.sh | sh -s pre Installing a specific version: ```bash -curl -L https://fly.io/install.sh | sh -s 0.0.200 +curl -L https://fly.io/install.sh | sh -s 0.2.50 ``` #### Windows @@ -51,6 +51,11 @@ Run the Powershell install script: ``` iwr https://fly.io/install.ps1 -useb | iex ``` +Installing a specific version: + +``` +$env:v = "0.2.50"; $v = $env:v; iwr https://fly.io/install.ps1 -useb | iex +``` ## Downloading from GitHub