mirror of
https://github.com/Jguer/yay
synced 2024-10-31 04:12:51 +00:00
Fix make test
(gofmt
threw "Files need to be linted")
This commit is contained in:
parent
1e4c029a2e
commit
38b5680619
1 changed files with 4 additions and 4 deletions
|
@ -55,12 +55,12 @@ func (u upSlice) Less(i, j int) bool {
|
||||||
|
|
||||||
if found != nil {
|
if found != nil {
|
||||||
return less
|
return less
|
||||||
} else {
|
|
||||||
iRunes := []rune(u[i].Repository)
|
|
||||||
jRunes := []rune(u[j].Repository)
|
|
||||||
return lessRunes(iRunes, jRunes)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
iRunes := []rune(u[i].Repository)
|
||||||
|
jRunes := []rune(u[j].Repository)
|
||||||
|
return lessRunes(iRunes, jRunes)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func getVersionDiff(oldVersion, newversion string) (left, right string) {
|
func getVersionDiff(oldVersion, newversion string) (left, right string) {
|
||||||
|
|
Loading…
Reference in a new issue