Commit 0f74cf4f authored by raybec's avatar raybec Committed by Vincent Driessen

This patch prevents silent failure of the auto-installer.

Original commit message:
Allows wget to work rather than failing silently.  The actual error is
"ERROR: certificate common name `*.github.com' doesn't match requested
host name `github.com'."  Tested on Ubuntu 10.10.  Not tested on
Windows, so I haven't changed that line.
Signed-off-by: 's avatarVincent Driessen <vincent@datafox.nl>
parent 68e53aae
...@@ -34,7 +34,7 @@ If you're on a Mac and use [MacPorts](http://macports.org/), it's simple: ...@@ -34,7 +34,7 @@ If you're on a Mac and use [MacPorts](http://macports.org/), it's simple:
Another easy way to install git-flow is using Rick Osborne's excellent git-flow Another easy way to install git-flow is using Rick Osborne's excellent git-flow
installer, which can be run using the following command: installer, which can be run using the following command:
$ wget -q -O - https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | sudo sh $ wget --no-check-certificate -q -O - https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | sudo sh
### Windows ### Windows
#### Using Cygwin #### Using Cygwin
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment