Skip to content

Commit d1347a0

Browse files
authoredNov 29, 2023
revert: fix(mac): should normalize unicode strings from file system before used in string compare (#4841) (#7905)
This reverts commit 37a17f2.
1 parent 3973c66 commit d1347a0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎.changeset/nine-rings-bow.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"dmg-builder": patch
3+
---
4+
5+
fix dmg build when productName or executableName contains Unicode

‎packages/dmg-builder/vendor/mac_alias/alias.py

-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import os.path
1111
import stat
1212
import sys
13-
from unicodedata import normalize
1413

1514
if sys.platform == 'darwin':
1615
from . import osx
@@ -390,10 +389,6 @@ def for_file(cls, path):
390389
st = osx.statfs(path)
391390
vol_path = st.f_mntonname
392391

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-
397392
# Grab its attributes
398393
attrs = [osx.ATTR_CMN_CRTIME,
399394
osx.ATTR_VOL_NAME,

0 commit comments

Comments
 (0)
Please sign in to comment.