From 20c30fc15e1274419429406ab70d0f74d25dd19e Mon Sep 17 00:00:00 2001 From: Kira Pilot Date: Fri, 17 May 2024 15:22:30 +0000 Subject: [PATCH 1/3] chore(docs): update install.sh to remove dead doc link --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index c5dd828b2652d..532778c1fbdb6 100755 --- a/install.sh +++ b/install.sh @@ -240,9 +240,9 @@ There is another binary in your PATH that conflicts with the binary we've instal $1 -This is likely because of an existing installation of Coder. See our documentation for suggestions on how to resolve this. - - https://coder.com/docs/v2/latest/install/install.sh#path-conflicts +This is likely because of an existing installation of Coder resulting in multiple Coder binaries in your PATH. +You can check where all of the versions are located by running \`which -a coder\`. +Whichever binary comes first in the returned list will be used when running Coder commands. EOF } From 4d5a7436cedafdc83d53d223fd40c0336a04e132 Mon Sep 17 00:00:00 2001 From: Kira Pilot Date: Wed, 29 May 2024 15:54:41 -0400 Subject: [PATCH 2/3] Update install.sh Co-authored-by: Kyle Carberry --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 532778c1fbdb6..189a1e8279540 100755 --- a/install.sh +++ b/install.sh @@ -240,9 +240,9 @@ There is another binary in your PATH that conflicts with the binary we've instal $1 -This is likely because of an existing installation of Coder resulting in multiple Coder binaries in your PATH. -You can check where all of the versions are located by running \`which -a coder\`. -Whichever binary comes first in the returned list will be used when running Coder commands. +This is likely because of an existing installation of Coder in your \$PATH. + +Run `which -a coder` to view all installations. EOF } From 5398fe0f16e96a2dd47d8023b9cd3a1bec1de2c8 Mon Sep 17 00:00:00 2001 From: Kira Pilot Date: Wed, 29 May 2024 20:41:42 +0000 Subject: [PATCH 3/3] escaping script properly --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 189a1e8279540..cabbdc685f2c6 100755 --- a/install.sh +++ b/install.sh @@ -242,7 +242,7 @@ There is another binary in your PATH that conflicts with the binary we've instal This is likely because of an existing installation of Coder in your \$PATH. -Run `which -a coder` to view all installations. +Run \`which -a coder\` to view all installations. EOF }