File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ import (
11
11
"sort"
12
12
"strconv"
13
13
"strings"
14
-
15
- "github.com/armon/go-radix"
16
14
)
17
15
18
16
const wcIgnoreSuffix = "*"
@@ -97,10 +95,10 @@ func (s *solver) writeHashingInputs(w io.Writer) {
97
95
98
96
// Add wildcard ignores to ignore list.
99
97
if s .rd .igpfx != nil {
100
- s .rd .igpfx .Walk (radix . WalkFn ( func (s string , v interface {}) bool {
98
+ s .rd .igpfx .Walk (func (s string , v interface {}) bool {
101
99
ig = append (ig , s + "*" )
102
100
return false
103
- }))
101
+ })
104
102
}
105
103
106
104
sort .Strings (ig )
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import (
19
19
"strings"
20
20
"unicode"
21
21
22
- radix "github.com/armon/go-radix"
22
+ "github.com/armon/go-radix"
23
23
)
24
24
25
25
// wildcard ignore suffix
You can’t perform that action at this time.
0 commit comments