Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 395 Bytes

repos.md

File metadata and controls

16 lines (14 loc) · 395 Bytes
layout title summary class
default
repos
A list of the current repositories
Project
public String _repos(@SuppressWarnings("unused")
String args[]) throws Exception {
	List<RepositoryPlugin> repos = getPlugins(RepositoryPlugin.class);
	List<String> names = new ArrayList<String>();
	for (RepositoryPlugin rp : repos)
		names.add(rp.getName());
	return join(names, ", ");
}