grafana/toolkit: Use http rather than ssh for git checkout (#19754)

(cherry picked from commit 3ca01c3255)
This commit is contained in:
Ryan McKinley
2019-10-16 12:32:09 +03:00
committed by Sofia Papagiannaki
parent 223f30c71f
commit a364a86855
@@ -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']);