Skip to content

Commit

Permalink
Merge pull request #336 from jonare/master
Browse files Browse the repository at this point in the history
Sort technologies before output to make diffing results easier
  • Loading branch information
ehsandeep authored Aug 4, 2021
2 parents a74c40c + 3d08c8c commit 3de0d5a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import (
"os"
"path"
"regexp"
"sort"
"strconv"
"strings"
"time"
Expand Down Expand Up @@ -826,6 +827,7 @@ retry:
}

if len(technologies) > 0 {
sort.Strings(technologies)
technologies := strings.Join(technologies, ",")

builder.WriteString(" [")
Expand Down

0 comments on commit 3de0d5a

Please sign in to comment.