generator-easy-ui5 3.2.1 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generators/app/index.js +2 -2
- package/package.json +1 -1
package/generators/app/index.js
CHANGED
|
@@ -321,7 +321,7 @@ module.exports = class extends Generator {
|
|
|
321
321
|
branch: generator.branch,
|
|
322
322
|
});
|
|
323
323
|
} catch (e) {
|
|
324
|
-
console.error(chalk.red(`Failed to retrieve the default branch for repository "${generator.name}" for "${
|
|
324
|
+
console.error(chalk.red(`Failed to retrieve the default branch for repository "${generator.name}" for "${generator.org}" organization! Run with --verbose for details!`));
|
|
325
325
|
if (this.options.verbose) {
|
|
326
326
|
console.error(chalk.red(e.message));
|
|
327
327
|
}
|
|
@@ -332,7 +332,7 @@ module.exports = class extends Generator {
|
|
|
332
332
|
|
|
333
333
|
if (this.options.verbose) {
|
|
334
334
|
this.log(
|
|
335
|
-
`Using commit ${commitSHA} from @${
|
|
335
|
+
`Using commit ${commitSHA} from @${generator.org}/${generator.name}#${generator.default_branch}...`
|
|
336
336
|
);
|
|
337
337
|
}
|
|
338
338
|
generatorPath = path.join(pluginsHome, generator.name);
|