Skip to content

Commit

Permalink
Update one-liner to use curl instead of wget.
Browse files Browse the repository at this point in the history
  • Loading branch information
kennyjwilli committed Oct 3, 2017
1 parent 5874270 commit 2dabc40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A NodeJS CLI to reformat your Clojure(Script) code using [cljfmt](https://github
Here is a one-liner to install cljfmt to `/usr/local/bin`:

```bash
bash -c 'sudo wget -O /usr/local/bin/cljfmt https://github.com/ComputeSoftware/cljfmt-cli/releases/download/v1.1/cljfmt && sudo chmod +x /usr/local/bin/cljfmt'
bash -c 'sudo curl -fsSLo /usr/local/bin/cljfmt https://github.com/ComputeSoftware/cljfmt-cli/releases/download/v1.1/cljfmt && sudo chmod +x /usr/local/bin/cljfmt'
```


Expand Down

0 comments on commit 2dabc40

Please sign in to comment.