From e7379aa7dbfe2424c1010afa7ad6d3996423a926 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 7 Apr 2026 20:42:38 +0000 Subject: [PATCH 1/2] Initial plan From 64b7c86e16e7535dd475baec10fb3c9f4e4147ce Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 7 Apr 2026 20:43:48 +0000 Subject: [PATCH 2/2] Fix INSTALL_DIR override syntax in README and install.sh comments Agent-Logs-Url: https://github.com/mcp-shark/lazy-tool/sessions/3f264d0c-7da0-4807-b8f0-f352bdd7bc91 Co-authored-by: rpgeeganage <10336353+rpgeeganage@users.noreply.github.com> --- README.md | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 047bf31..e8370eb 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ curl -sSfL https://raw.githubusercontent.com/rpgeeganage/lazy-tool/main/install. Override the install directory (default `./bin`): ```bash -INSTALL_DIR=/usr/local/bin curl -sSfL https://raw.githubusercontent.com/rpgeeganage/lazy-tool/main/install.sh | sh +curl -sSfL https://raw.githubusercontent.com/rpgeeganage/lazy-tool/main/install.sh | INSTALL_DIR=/usr/local/bin sh ``` ### Go install diff --git a/install.sh b/install.sh index 1e233fe..d1e93ae 100755 --- a/install.sh +++ b/install.sh @@ -4,7 +4,7 @@ set -eu # lazy-tool installer # Usage: # curl -sSfL https://raw.githubusercontent.com/rpgeeganage/lazy-tool/main/install.sh | sh -# INSTALL_DIR=/usr/local/bin curl -sSfL ... | sh +# curl -sSfL ... | INSTALL_DIR=/usr/local/bin sh REPO="rpgeeganage/lazy-tool" INSTALL_DIR="${INSTALL_DIR:-./bin}"