diff options
author | Andrii Kostenko <andrey@kostenko.name> | 2014-09-06 22:44:18 +0300 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2014-10-22 18:13:15 +0200 |
commit | b9a11b16fec80c5d68f8a215565da3624748197f (patch) | |
tree | ff9f3a596b815b620086f249b71a104e3aea8ce5 | |
parent | 7f07facf41e97d0de250f565d5e514f1e6c998a2 (diff) | |
download | zsh-b9a11b16fec80c5d68f8a215565da3624748197f.tar.gz zsh-b9a11b16fec80c5d68f8a215565da3624748197f.tar.bz2 zsh-b9a11b16fec80c5d68f8a215565da3624748197f.zip |
fixed URL on github.io
github.io moved to https and http returns 301 redirect
-rw-r--r-- | plugins/gitignore/gitignore.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gitignore/gitignore.plugin.zsh b/plugins/gitignore/gitignore.plugin.zsh index be037d87a..5bf302452 100644 --- a/plugins/gitignore/gitignore.plugin.zsh +++ b/plugins/gitignore/gitignore.plugin.zsh @@ -1,7 +1,7 @@ -function gi() { curl http://www.gitignore.io/api/$@ ;} +function gi() { curl https://www.gitignore.io/api/$@ ;} _gitignireio_get_command_list() { - curl -s http://www.gitignore.io/api/list | tr "," "\n" + curl -s https://www.gitignore.io/api/list | tr "," "\n" } _gitignireio () { |