Properly handle promise in create script (#784)

* Properly handle promise in create script

* Add regression test
This commit is contained in:
Raphael von der Grün
2019-07-17 09:52:19 +02:00
committed by GitHub
parent 997943a194
commit 1de7c38134
2 changed files with 12 additions and 1 deletions

View File

@@ -272,7 +272,7 @@ exports.create = function (project_path, config, options, events) {
// Make the package conform to Java package types
return exports.validatePackageName(package_name)
.then(function () {
exports.validateProjectName(project_name);
return exports.validateProjectName(project_name);
}).then(function () {
// Log the given values for the project
events.emit('log', 'Creating Cordova project for the Android platform:');