From 2dabc40bdb8a74ee69f6d49f3e1ec4286e96f9d1 Mon Sep 17 00:00:00 2001 From: Kenny Williams Date: Tue, 3 Oct 2017 12:11:29 -0700 Subject: [PATCH] Update one-liner to use curl instead of wget. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c2ff052..0b2d49f 100644 --- a/README.md +++ b/README.md @@ -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' ```