File tree 2 files changed +5
-5
lines changed
packages/dmg-builder/vendor/mac_alias
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " dmg-builder " : patch
3
+ ---
4
+
5
+ fix dmg build when productName or executableName contains Unicode
Original file line number Diff line number Diff line change 10
10
import os .path
11
11
import stat
12
12
import sys
13
- from unicodedata import normalize
14
13
15
14
if sys .platform == 'darwin' :
16
15
from . import osx
@@ -390,10 +389,6 @@ def for_file(cls, path):
390
389
st = osx .statfs (path )
391
390
vol_path = st .f_mntonname
392
391
393
- # File and folder names in HFS+ are normalized to a form similar to NFD.
394
- # Must be normalized (NFD->NFC) before use to avoid unicode string comparison issues.
395
- vol_path = normalize ("NFC" , vol_path .decode ('utf-8' )).encode ('utf-8' )
396
-
397
392
# Grab its attributes
398
393
attrs = [osx .ATTR_CMN_CRTIME ,
399
394
osx .ATTR_VOL_NAME ,
You can’t perform that action at this time.
0 commit comments