From 046962789c49291e179d5d262bbf885b33e34f19 Mon Sep 17 00:00:00 2001 From: Thomas Tschager Date: Mon, 20 Oct 2014 16:28:11 +0200 Subject: [PATCH 1/2] https instead of http --- plugins/gitignore/gitignore.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gitignore/gitignore.plugin.zsh b/plugins/gitignore/gitignore.plugin.zsh index be037d87a..1a39dcc20 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/$@ ;} _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 () { From bab5acf62fbe081087739fcf0967259e1acf7ca9 Mon Sep 17 00:00:00 2001 From: Thomas Tschager Date: Mon, 20 Oct 2014 16:34:32 +0200 Subject: [PATCH 2/2] Update gitignore.plugin.zsh --- plugins/gitignore/gitignore.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gitignore/gitignore.plugin.zsh b/plugins/gitignore/gitignore.plugin.zsh index 1a39dcc20..5bf302452 100644 --- a/plugins/gitignore/gitignore.plugin.zsh +++ b/plugins/gitignore/gitignore.plugin.zsh @@ -1,4 +1,4 @@ -function gi() { curl http://www.gitignore.io/api/$@ ;} +function gi() { curl https://www.gitignore.io/api/$@ ;} _gitignireio_get_command_list() { curl -s https://www.gitignore.io/api/list | tr "," "\n"