lelamanul-player
Advanced tools
Comparing version 3.6.3-beta.0 to 3.6.3-beta.1
@@ -49,5 +49,5 @@ #! /usr/bin/env node | ||
} | ||
var jreDir = getJdeploySupportDir() + path.sep + 'node_modules' + path.sep + 'node-jre' + path.sep + 'jre'; | ||
try { | ||
@@ -127,3 +127,3 @@ return jreDir + path.sep + getDirectories(jreDir)[0] + path.sep + _driver; | ||
fail("Could not find embedded java at "+getEmbeddedJavaDir()); | ||
} else { | ||
@@ -136,3 +136,3 @@ // Found the embedded version. Add it to the PATH | ||
*/ | ||
} | ||
@@ -156,14 +156,12 @@ //console.log("Java version is "+getJavaVersion()); | ||
process.stdin.on('readable', () => { | ||
var chunk = process.stdin.read(); | ||
if (chunk === null) { | ||
return; | ||
process.stdin.on('readable', function() { | ||
var chunk = null; | ||
while (null !== (chunk = process.stdin.read())) { | ||
try { | ||
child.stdin.write(chunk); | ||
} catch(e){} | ||
} | ||
try { | ||
child.stdin.write(chunk); | ||
} catch(e){} | ||
}); | ||
child.on('close', function(code) { | ||
process.exit(code); | ||
}); | ||
}); |
@@ -10,3 +10,3 @@ { | ||
"repository": "", | ||
"version": "3.6.3-beta.0", | ||
"version": "3.6.3-beta.1", | ||
"jdeploy": { | ||
@@ -13,0 +13,0 @@ "jar": "dist/DxcOmnichannelPlayer.jar", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
104711685
23