Skip to content

Commit

Permalink
Sort services
Browse files Browse the repository at this point in the history
  • Loading branch information
trusz committed Feb 10, 2019
1 parent baad439 commit 2544846
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/yaml/yaml.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package yaml
import (
"io/ioutil"
"log"
"sort"

"gopkg.in/yaml.v2"
)
Expand Down Expand Up @@ -43,7 +44,7 @@ func LoadPossibleServices(showDependencies bool) []string {
if !showDependencies {
filteredServices = filterOutDependencies(possibleServices, dependencyServices)
}

sort.Strings(filteredServices)
return filteredServices
}

Expand Down

0 comments on commit 2544846

Please sign in to comment.