From 6c0da183d86ad8fd50e4764a3cf9e1d52093c41f Mon Sep 17 00:00:00 2001 From: Kashif Soofi Date: Fri, 10 Oct 2025 22:24:31 +0100 Subject: [PATCH] #112: Fix documentation links --- install/install.ps1 | 4 ++-- install/install.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/install/install.ps1 b/install/install.ps1 index d3914f9..021f889 100644 --- a/install/install.ps1 +++ b/install/install.ps1 @@ -50,7 +50,7 @@ else { Write-Output "Creating $FlowCtlRootPath directory" New-Item -ErrorAction Ignore -Path $FlowCtlRootPath -ItemType "directory" if (!(Test-Path $FlowCtlRootPath -PathType Container)) { - Write-Warning "Please visit https://flowsynx.io/docs/getting-started/install-flowctl/ for instructions on how to install without admin rights." + Write-Warning "Please visit https://flowsynx.io/docs/getting-started/flowctl-based-installation/ for instructions on how to install without admin rights." throw "Cannot create $FlowCtlRootPath" } @@ -142,4 +142,4 @@ else { } Write-Output "`r`nFlowCtl is installed successfully." -Write-Output "To get started with FlowCtl, please visit https://flowsynx.io/docs/category/getting-started ." \ No newline at end of file +Write-Output "To get started with FlowCtl, please visit https://flowsynx.io/docs/getting-started/." \ No newline at end of file diff --git a/install/install.sh b/install/install.sh index 50fb9dc..0902257 100644 --- a/install/install.sh +++ b/install/install.sh @@ -69,7 +69,7 @@ runAsRoot() { fi $CMD || { - echo "Please visit https://flowsynx.io/docs/getting-started/install-flowctl for instructions on how to install without sudo." + echo "Please visit https://flowsynx.io/docs/getting-started/flowctl-based-installation/ for instructions on how to install without sudo." exit 1 } } @@ -197,7 +197,7 @@ cleanup() { } installCompleted() { - echo -e "\nTo get started with FlowCtl, please visit https://flowsynx.io/docs/category/getting-started" + echo -e "\nTo get started with FlowCtl, please visit https://flowsynx.io/docs/getting-started" } # -----------------------------------------------------------------------------