From ca5eae6e74b99a95ad74004640e9a97e4db5f6b8 Mon Sep 17 00:00:00 2001 From: Kevin Ditscheid <kevin.ditscheid@sgalinski.de> Date: Tue, 11 Jan 2022 09:26:20 +0000 Subject: [PATCH] [BUGFIX] Use https:// instead of ssh:// because we need to use the public clone url --- recipes/webgrind.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/webgrind.rb b/recipes/webgrind.rb index 2cd02cf..2484395 100644 --- a/recipes/webgrind.rb +++ b/recipes/webgrind.rb @@ -42,7 +42,7 @@ directory node['webgrind']['install_path'] do end git node['webgrind']['install_path'] do - repository 'ssh://git@github.com/jokkedk/webgrind.git' + repository 'https://github.com/jokkedk/webgrind.git' revision 'master' action :sync end -- GitLab