Skip to content

Commit ff5bdab

Browse files
authored
Merge pull request #2 from mcp-shark/copilot/override-install-command
2 parents 2397bd1 + 64b7c86 commit ff5bdab

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ curl -sSfL https://raw.githubusercontent.com/rpgeeganage/lazy-tool/main/install.
5151
Override the install directory (default `./bin`):
5252

5353
```bash
54-
INSTALL_DIR=/usr/local/bin curl -sSfL https://raw.githubusercontent.com/rpgeeganage/lazy-tool/main/install.sh | sh
54+
curl -sSfL https://raw.githubusercontent.com/rpgeeganage/lazy-tool/main/install.sh | INSTALL_DIR=/usr/local/bin sh
5555
```
5656

5757
### Go install

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -eu
44
# lazy-tool installer
55
# Usage:
66
# curl -sSfL https://raw.githubusercontent.com/rpgeeganage/lazy-tool/main/install.sh | sh
7-
# INSTALL_DIR=/usr/local/bin curl -sSfL ... | sh
7+
# curl -sSfL ... | INSTALL_DIR=/usr/local/bin sh
88

99
REPO="rpgeeganage/lazy-tool"
1010
INSTALL_DIR="${INSTALL_DIR:-./bin}"

0 commit comments

Comments
 (0)