forked from qt-creator/qt-creator
Squish: Fix expected sort order
Change-Id: I882ad3633f7cf827aea086b5f5fd2a9204eeb482 Reviewed-by: Robert Loehning <robert.loehning@qt.io>
This commit is contained in:
@@ -689,7 +689,7 @@ def copyFilesToDir(files, targetDir):
|
||||
return result
|
||||
|
||||
def __sortFilenamesOSDependent__(filenames):
|
||||
if platform.system() in ('Windows', 'Microsoft'):
|
||||
if platform.system() in ('Windows', 'Microsoft', 'Darwin'):
|
||||
filenames.sort(key=str.lower)
|
||||
else:
|
||||
filenames.sort()
|
||||
|
||||
Reference in New Issue
Block a user