Skip to content

Commit aaadb8d

Browse files
authored
Quiet curl in the install command for clearer output
Without this, when a sudo password is required, the password prompt is confusingly obscured by the curl output. Adding -s hides that initial output making this much clearer.
1 parent e1ef986 commit aaadb8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ This is just one tool in the chain. `notes` is a command line tool, and some peo
2424
### Automatic:
2525

2626
```bash
27-
curl -L https://raw.githubusercontent.com/pimterry/notes/latest-release/install.sh | sudo bash
27+
curl -Ls https://raw.githubusercontent.com/pimterry/notes/latest-release/install.sh | sudo bash
2828
```
2929
This will install `notes`, a default configuration, a man page, and bash completion if possible.
3030

3131
```bash
32-
curl -L https://raw.githubusercontent.com/pimterry/notes/latest-release/install.sh | PREFIX=$HOME bash
32+
curl -Ls https://raw.githubusercontent.com/pimterry/notes/latest-release/install.sh | PREFIX=$HOME bash
3333
```
3434
For non-root installation(user directory).
3535

0 commit comments

Comments
 (0)