We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1453501 + 3ba3d54 commit 8a0d8a6Copy full SHA for 8a0d8a6
generators/app/index.js
@@ -12,6 +12,9 @@ module.exports = class extends Generator {
12
// if this is executed like `yo roosevelt --standard-install custom-app-name`, cache that name so it can override appName later
13
if (opts.standardInstall && typeof opts.standardInstall === 'string') {
14
cache.standardInstall = opts.standardInstall
15
+ } else if (args[0] === '--standard-install') {
16
+ // if mkroosevelt is being used, type of installation in args[0] and the project name will be in args[1]
17
+ cache.standardInstall = args[1]
18
}
19
20
this.option('standard-install', {
0 commit comments