Skip to content

Commit 72ecf03

Browse files
committed
Move installation script to etc subfolder
I would prefer to avoid cluttering up the root of the repository too much. The reason is that when people visit the repository on GitHub, they must scroll down past the root directory listing before getting to the readme. Some files and folders must be in the root, but there are some others (e.g., gon.config.hcl) that can be moved to a subfolder, so this move can be part of a larger campaign.
1 parent 9e98c0e commit 72ecf03

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: docs/installation.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ script can be run on Windows by installing [Git for Windows](https://gitforwindo
66
This script will install the latest version of arduino-lint to `$PWD/bin`:
77

88
```
9-
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-lint/main/install.sh | sh
9+
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/install.sh | sh
1010
```
1111

1212
If you want to target a different directory, for example `~/local/bin`, set the `BINDIR` environment variable like this:
1313

1414
```
15-
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-lint/main/install.sh | BINDIR=~/local/bin sh
15+
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/install.sh | BINDIR=~/local/bin sh
1616
```
1717

1818
If you would like to use the `arduino-lint` command from any location, install arduino-lint to a directory already in
@@ -22,7 +22,7 @@ If you want to download a specific arduino-lint version, for example `0.9.0`, pa
2222
like this:
2323

2424
```
25-
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-lint/main/install.sh | sh -s 0.9.0
25+
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/install.sh | sh -s 0.9.0
2626
```
2727

2828
### Download

Diff for: install.sh renamed to etc/install.sh

File renamed without changes.

0 commit comments

Comments
 (0)