Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/distro.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Ruffwind <rf@rufflewind.com>2015-07-22 04:01:04 +0300
committerPhil Ruffwind <rf@rufflewind.com>2015-07-22 04:01:04 +0300
commitc6ad63462ad28b8b3e43bb82131cb6df67e10844 (patch)
tree82a6e9d428ce5828725e06fea578c5b995b20e8a /README.md
parentf61e2189821aba20204078ae447025741ab0debe (diff)
README.md: Avoid use of -k (--insecure) in curl for security reasons
The -k (--insecure) flag disables the TLS certificate verifications, allowing anyone to impersonate the source to serve a malicious version of the script.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index ccbc4ad..ca4618b 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ Self-contained Torch installation
Install dependencies. Uses `apt-get` on Ubuntu, which might require `sudo`. Uses `brew` on OSX.
```sh
-curl -sk https://raw.githubusercontent.com/torch/ezinstall/master/install-deps | bash
+curl -s https://raw.githubusercontent.com/torch/ezinstall/master/install-deps | bash
```
Install this repo, which installs the torch distribution, with a lot of nice goodies.