From 374796c862bca94f710b9d28861cef475d5c4c5a Mon Sep 17 00:00:00 2001 From: Tom Mead <530462+wkstar@users.noreply.github.com> Date: Thu, 27 Jun 2024 11:07:00 +0100 Subject: [PATCH] Fixing links from powershell. The trailing bang breaks the link. --- install.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.ps1 b/install.ps1 index 8ab5b88e..d079ede2 100644 --- a/install.ps1 +++ b/install.ps1 @@ -10,7 +10,7 @@ if (Get-Command git -ErrorAction SilentlyContinue) { Write-Host "SUCCESS: Git is installed" } else { Write-Host "WARNING: Git does not seem to be installed." - Write-Host "Please download Git using your package manager or over https://git-scm.com/!" + Write-Host "Please download Git using your package manager or over https://git-scm.com/ !" exit 1 } @@ -18,7 +18,7 @@ if (Get-Command rustc -ErrorAction SilentlyContinue) { Write-Host "SUCCESS: Rust is installed" } else { Write-Host "WARNING: Rust does not seem to be installed." - Write-Host "Please download Rust using https://rustup.rs!" + Write-Host "Please download Rust using https://rustup.rs/ !" exit 1 } @@ -26,7 +26,7 @@ if (Get-Command cargo -ErrorAction SilentlyContinue) { Write-Host "SUCCESS: Cargo is installed" } else { Write-Host "WARNING: Cargo does not seem to be installed." - Write-Host "Please download Rust and Cargo using https://rustup.rs!" + Write-Host "Please download Rust and Cargo using https://rustup.rs/ !" exit 1 }