add ico as a force-extract extension

This commit is contained in:
David Rose 2011-10-21 16:38:34 +00:00
parent 7e5b30e4b6
commit a5d6bafd7b

View File

@ -2261,7 +2261,7 @@ class Packager:
# Binary files that are copied (and compressed) without
# processing.
self.binaryExtensions = [ 'ttf', 'TTF', 'mid' ]
self.binaryExtensions = [ 'ttf', 'TTF', 'mid', 'ico' ]
# Files that can have an existence in multiple different
# packages simultaneously without conflict.
@ -2301,7 +2301,7 @@ class Packager:
}
# Files that should be extracted to disk.
self.extractExtensions = self.executableExtensions[:] + self.manifestExtensions[:]
self.extractExtensions = self.executableExtensions[:] + self.manifestExtensions[:] + [ 'ico' ]
# Files that indicate a platform dependency.
self.platformSpecificExtensions = self.executableExtensions[:]