protobuf 'Repos' renamed 'ForgeConfigs'
This commit is contained in:
parent
f5ad4a7a41
commit
54a93cd5eb
|
@ -64,7 +64,7 @@ func (r *ForgeConfigs) All() *ForgeConfigIterator {
|
|||
func (r *ForgeConfigs) SortByPath() *ForgeConfigIterator {
|
||||
packs := r.selectAllForgeConfigs()
|
||||
|
||||
sort.Sort(ByForgeConfigPath(packs))
|
||||
sort.Sort(byForgeConfigPath(packs))
|
||||
|
||||
iterator := newForgeConfigIterator(packs)
|
||||
return iterator
|
||||
|
@ -112,11 +112,11 @@ func (r *ForgeConfigs) Len() int {
|
|||
return len(r.ForgeConfigs)
|
||||
}
|
||||
|
||||
type ByForgeConfigPath []*ForgeConfig
|
||||
type byForgeConfigPath []*ForgeConfig
|
||||
|
||||
func (a ByForgeConfigPath) Len() int { return len(a) }
|
||||
func (a ByForgeConfigPath) Less(i, j int) bool { return a[i].GoPath < a[j].GoPath }
|
||||
func (a ByForgeConfigPath) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
|
||||
func (a byForgeConfigPath) Len() int { return len(a) }
|
||||
func (a byForgeConfigPath) Less(i, j int) bool { return a[i].GoPath < a[j].GoPath }
|
||||
func (a byForgeConfigPath) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
|
||||
|
||||
func (all *ForgeConfigs) DeleteByPath(gopath string) *ForgeConfig {
|
||||
forgeConfigsLock.Lock()
|
||||
|
|
|
@ -6,6 +6,7 @@ build:
|
|||
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
||||
./forgeConfig
|
||||
FORGE_HOME=/tmp/forge ./forgeConfig
|
||||
FORGE_HOME=/tmp/forge ./forgeConfig --list
|
||||
|
||||
install:
|
||||
GO111MODULE=off go install \
|
||||
|
|
|
@ -19,14 +19,11 @@ func main() {
|
|||
|
||||
if argv.List {
|
||||
repos.PrintTable()
|
||||
/*
|
||||
log.Info(forgepb.RepoHeader())
|
||||
loop := repos.SortByPath() // get the list of repos
|
||||
for loop.Scan() {
|
||||
r := loop.Repo()
|
||||
r := loop.Next()
|
||||
log.Info("repo:", r.GoPath)
|
||||
}
|
||||
*/
|
||||
os.Exit(0)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue