From 18849e36c740552e20648bdbaf98fa678db6f754 Mon Sep 17 00:00:00 2001
From: Daniel Holbach <daniel@weave.works>
Date: Tue, 27 Apr 2021 16:26:06 +0200
Subject: [PATCH] Update install script URL

	As we don't pass '-L' to curl, the redirect is
	not followed.

Signed-off-by: Daniel Holbach <daniel@weave.works>
---
 README.md                         | 2 +-
 docs/dev-guides/source-watcher.md | 2 +-
 docs/get-started/index.md         | 2 +-
 docs/guides/flux-v1-migration.md  | 2 +-
 docs/guides/installation.md       | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index e59111ff..4fb480a5 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ brew install fluxcd/tap/flux
 With Bash:
 
 ```sh
-curl -s https://toolkit.fluxcd.io/install.sh | sudo bash
+curl -s https://fluxcd.io/install.sh | sudo bash
 
 # enable completions in ~/.bash_profile
 . <(flux completion bash)
diff --git a/docs/dev-guides/source-watcher.md b/docs/dev-guides/source-watcher.md
index 8f533b7d..4353d444 100644
--- a/docs/dev-guides/source-watcher.md
+++ b/docs/dev-guides/source-watcher.md
@@ -28,7 +28,7 @@ kind create cluster --name dev
 Install the Flux CLI:
 
 ```sh
-curl -s https://toolkit.fluxcd.io/install.sh | sudo bash
+curl -s https://fluxcd.io/install.sh | sudo bash
 ```
 
 Verify that your dev machine satisfies the prerequisites with:
diff --git a/docs/get-started/index.md b/docs/get-started/index.md
index 398a9789..64826125 100644
--- a/docs/get-started/index.md
+++ b/docs/get-started/index.md
@@ -39,7 +39,7 @@ brew install fluxcd/tap/flux
 Or install `flux` by downloading precompiled binaries using a Bash script:
 
 ```sh
-curl -s https://toolkit.fluxcd.io/install.sh | sudo bash
+curl -s https://fluxcd.io/install.sh | sudo bash
 ```
 
 The install script downloads the flux binary to `/usr/local/bin`.
diff --git a/docs/guides/flux-v1-migration.md b/docs/guides/flux-v1-migration.md
index 0b89b9c9..470c94ed 100644
--- a/docs/guides/flux-v1-migration.md
+++ b/docs/guides/flux-v1-migration.md
@@ -32,7 +32,7 @@ brew install fluxcd/tap/flux
 With Bash:
 
 ```sh
-curl -s https://toolkit.fluxcd.io/install.sh | sudo bash
+curl -s https://fluxcd.io/install.sh | sudo bash
 
 # enable completions in ~/.bash_profile
 . <(flux completion bash)
diff --git a/docs/guides/installation.md b/docs/guides/installation.md
index b528b9e6..496c53a8 100644
--- a/docs/guides/installation.md
+++ b/docs/guides/installation.md
@@ -19,7 +19,7 @@ brew install fluxcd/tap/flux
 With Bash:
 
 ```sh
-curl -s https://toolkit.fluxcd.io/install.sh | sudo bash
+curl -s https://fluxcd.io/install.sh | sudo bash
 
 # enable completions in ~/.bash_profile
 . <(flux completion bash)
-- 
GitLab