jdeploy-installer 3.0.0-alpha.36 → 3.0.0-alpha.37
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.
|
Binary file
|
|
@@ -279,7 +279,7 @@ function njreWrap() {
|
|
|
279
279
|
|
|
280
280
|
java_version: version,
|
|
281
281
|
ext: 'zip',
|
|
282
|
-
|
|
282
|
+
bundle_type: type,
|
|
283
283
|
javafx: ''+javafx,
|
|
284
284
|
arch: 'x86',
|
|
285
285
|
hw_bitness: '64',
|
|
@@ -291,15 +291,15 @@ function njreWrap() {
|
|
|
291
291
|
switch (process.platform) {
|
|
292
292
|
|
|
293
293
|
case 'darwin':
|
|
294
|
-
q.
|
|
294
|
+
q.os = 'macos'
|
|
295
295
|
break
|
|
296
296
|
case 'linux':
|
|
297
|
-
q.
|
|
297
|
+
q.os = 'linux'
|
|
298
298
|
break
|
|
299
299
|
|
|
300
300
|
case 'win32':
|
|
301
301
|
case 'win64':
|
|
302
|
-
q.
|
|
302
|
+
q.os = 'windows'
|
|
303
303
|
break
|
|
304
304
|
default:
|
|
305
305
|
return Promise.reject(new Error('Unsupported operating system'))
|
|
Binary file
|
package/package.json
CHANGED