atlassian-soy-cli
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -63,3 +63,3 @@ var _ = require('lodash'); | ||
}).then(function(soyCliJar) { | ||
return Q.nfcall(findJavaHome).then(function(javaHome) { | ||
return getJavaHome().then(function(javaHome) { | ||
winston.info('Java home is %s', javaHome); | ||
@@ -182,1 +182,8 @@ | ||
} | ||
function getJavaHome() { | ||
return Q.nfcall(findJavaHome).then(function(javaHome) { | ||
// find-java-home is inserting a newline at eol, make sure it's not there. | ||
return javaHome ? javaHome.trim() : javaHome; | ||
}); | ||
} |
{ | ||
"name": "atlassian-soy-cli", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Node wrapper for the Atlassian Soy CLI", | ||
@@ -5,0 +5,0 @@ "main": "app/cli.js", |
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
72524
220