From b66fb82865af9db45070475402aa1f7ff9b36132 Mon Sep 17 00:00:00 2001 From: Tom Mead <530462+wkstar@users.noreply.github.com> Date: Thu, 27 Jun 2024 11:05:35 +0100 Subject: [PATCH] Fix shell links not opening The trailing bang breaks the link. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index f6031cf8..7a9629a6 100755 --- a/install.sh +++ b/install.sh @@ -9,7 +9,7 @@ then echo "SUCCESS: Git is installed" else echo "ERROR: Git does not seem to be installed." - echo "Please download Git using your package manager or over https://git-scm.com/!" + echo "Please download Git using your package manager or over https://git-scm.com/ !" exit 1 fi @@ -30,7 +30,7 @@ then echo "SUCCESS: rustup is installed" else echo "ERROR: rustup does not seem to be installed." - echo "Please download rustup using https://rustup.rs!" + echo "Please download rustup using https://rustup.rs/ !" exit 1 fi