From 7a3381bd278ee9da0119d5aaa9302651b47840fe Mon Sep 17 00:00:00 2001 From: Rodrigo Machado Date: Tue, 3 Feb 2015 15:04:38 -0200 Subject: [PATCH] Use curl instead of wget to install script OS X don't always have wget installed. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e1ec13..0018f33 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ A command-line script to open the GitHub page, or website for a repository. Put the bash script in `~/bin/` and make sure that folder's in your PATH. ```sh -wget -O ~/bin/git-open https://raw.githubusercontent.com/paulirish/git-open/master/git-open +curl -o ~/bin/git-open https://raw.githubusercontent.com/paulirish/git-open/master/git-open chmod +x ~/bin/git-open ```