From 3ca01c3255f066ab61bb27fb07569a4a5e98505d Mon Sep 17 00:00:00 2001 From: Ryan McKinley Date: Tue, 15 Oct 2019 05:18:15 -0700 Subject: [PATCH] grafana/toolkit: Use http rather than ssh for git checkout (#19754) --- packages/grafana-toolkit/src/cli/tasks/plugin/create.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/grafana-toolkit/src/cli/tasks/plugin/create.ts b/packages/grafana-toolkit/src/cli/tasks/plugin/create.ts index d2a4c9b2f52..35280529bf3 100644 --- a/packages/grafana-toolkit/src/cli/tasks/plugin/create.ts +++ b/packages/grafana-toolkit/src/cli/tasks/plugin/create.ts @@ -24,9 +24,9 @@ interface PluginDetails { type PluginType = 'angular-panel' | 'react-panel' | 'datasource-plugin'; const RepositoriesPaths = { - 'angular-panel': 'git@github.com:grafana/simple-angular-panel.git', - 'react-panel': 'git@github.com:grafana/simple-react-panel.git', - 'datasource-plugin': 'git@github.com:grafana/simple-datasource.git', + 'angular-panel': 'https://github.com/grafana/simple-angular-panel.git', + 'react-panel': 'https://github.com/grafana/simple-react-panel.git', + 'datasource-plugin': 'https://github.com/grafana/simple-datasource.git', }; export const getGitUsername = async () => await simpleGit.raw(['config', '--global', 'user.name']);