Skip to content

Commit 04077c5

Browse files
author
Paul Korzhyk
committed
Oops, don't double reverse the reverse order
1 parent 647959f commit 04077c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def runHugo(outSuffix=""):
4949
def compareVersions(a, b):
5050
a = [int(x) for x in a.split('.')]
5151
b = [int(x) for x in b.split('.')]
52-
return a > b
52+
return a < b
5353

5454

5555
def getReleases():

0 commit comments

Comments
 (0)