Skip to content

Commit

Permalink
Quiet curl in the install command for clearer output
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
pimterry authored Sep 7, 2021
1 parent e1ef986 commit aaadb8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ This is just one tool in the chain. `notes` is a command line tool, and some peo
### Automatic:

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

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

Expand Down

0 comments on commit aaadb8d

Please sign in to comment.