diff --git a/index.js b/index.js index 21bc82ed..f174b90a 100755 --- a/index.js +++ b/index.js @@ -29,7 +29,7 @@ program program .command('new ') - .option('-s, --scaffold ', 'The framework to use. Options include react, angular, vuejs, nextjs and node.') + .option('-s, --scaffold ', 'The framework to use. Options include react, angular, vuejs, nextjs, node and android.') .option('-r, --restURL ', 'The rest URL to use. default: https://rest.bitbox.earth/v1/') .option('-e, --environment ', 'environment of running BITBOX instance. Ex: production, staging. (Default: development)') .description(`create a new BITBOX application`) @@ -70,6 +70,8 @@ program repo = 'https://github.com/Bitcoin-com/bitbox-scaffold-react.git'; } else if(scaffold === 'vue') { repo = 'https://github.com/Bitcoin-com/bitbox-scaffold-vue.git'; + } else if(scaffold === 'android') { + repo = 'https://github.com/Bitcoin-com/bitbox-scaffold-android.git'; } else { console.log(chalk.red(`Scaffold ${scaffold} not supported`)); process.exit(1)