Skip to content

Commit

Permalink
Sort technologies before output to make diffing results easier
Browse files Browse the repository at this point in the history
  • Loading branch information
jonare committed Aug 2, 2021
1 parent f16e7f4 commit 3d08c8c
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 @@ -790,6 +791,7 @@ retry:
}

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

builder.WriteString(" [")
Expand Down

0 comments on commit 3d08c8c

Please sign in to comment.