@talend/i18n-scripts
Advanced tools
Comparing version 0.8.0-beta.9 to 0.8.0-beta.10
{ | ||
"name": "@talend/i18n-scripts", | ||
"description": "Set of scripts to ease i18n workflow", | ||
"version": "0.8.0-beta.9", | ||
"version": "0.8.0-beta.10", | ||
"license": "Apache-2.0", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
@@ -150,4 +150,6 @@ /* eslint-disable global-require */ | ||
spawn.sync('more', [process.env.MAVEN_SETTINGS], repoCmdContext); | ||
const which = spawn.sync('which', ['mvn'], repoCmdContext).on('error', err => printError(err)); | ||
spawn.sync('mvn', ['-s', process.env.MAVEN_SETTINGS, 'deploy'], repoCmdContext).on('error', err => printError(err)); | ||
const whichCmd = spawn.sync('which', ['mvn'], repoCmdContext); | ||
printInfo(whichCmd); | ||
const mvnCmd = spawn.sync('mvn', ['-s', process.env.MAVEN_SETTINGS, 'deploy'], repoCmdContext); | ||
printInfo(mvnCmd); | ||
break; | ||
@@ -154,0 +156,0 @@ default: |
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
1452
112453