Merge pull request #18506 from AlexHolly/export-more-specific-error-message

Added a more specific error message on export
This commit is contained in:
Max Hilbrunner 2018-04-30 18:14:35 +02:00 committed by GitHub
commit c408eb7520
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -491,7 +491,7 @@ void EditorNode::_fs_changed() {
err = platform->export_project(preset, export_defer.debug, export_defer.path);
}
if (err != OK) {
ERR_PRINTS(vformat(TTR("Project export failed with error code %d."), (int)err));
ERR_PRINTS(vformat(TTR("Project export failed with error code %d. Missing template?"), (int)err));
}
}
}