dmg-builder 24.9.2 → 24.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dmg-builder",
|
|
3
|
-
"version": "24.9.
|
|
3
|
+
"version": "24.9.4",
|
|
4
4
|
"main": "out/dmgUtil.js",
|
|
5
5
|
"author": "Vladimir Krivosheev",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"fs-extra": "^10.1.0",
|
|
21
21
|
"iconv-lite": "^0.6.2",
|
|
22
22
|
"js-yaml": "^4.1.0",
|
|
23
|
-
"builder-
|
|
24
|
-
"builder-util": "24.
|
|
25
|
-
"
|
|
23
|
+
"app-builder-lib": "24.9.4",
|
|
24
|
+
"builder-util": "24.9.4",
|
|
25
|
+
"builder-util-runtime": "9.2.3"
|
|
26
26
|
},
|
|
27
27
|
"optionalDependencies": {
|
|
28
28
|
"dmg-license": "^1.0.11"
|
|
@@ -10,7 +10,6 @@ import os
|
|
|
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 @@ class Alias (object):
|
|
|
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,
|