From fc814c4683c1a0b461749f6fe85e7e36c00a9f9b Mon Sep 17 00:00:00 2001 From: mdierolf Date: Thu, 13 Nov 2025 10:33:04 -0800 Subject: [PATCH] Change install command to include -t option The install command should treat the destination as a directory, not a file or directory. Added the -t option to the install command to implement this behavior --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 82dc12065..5302aa24f 100755 --- a/install.sh +++ b/install.sh @@ -70,7 +70,7 @@ function install_cli { curl --ssl-reqd -sL --retry 3 "${RELEASE_URL}" | tar zx --strip 1 echo "Installing to $DESTDIR" - install circleci "$DESTDIR" + install circleci -t "$DESTDIR" command -v circleci