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

This commit is contained in:
Ryan McKinley
2019-10-15 05:18:15 -07:00
committed by Dominik Prokop
parent 00d0640b6e
commit 3ca01c3255

View File

@@ -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']);