@@ -63,7 +63,7 @@ async function promptForMissingOptions(options) {
6363questions . push ( {
6464type :'input' ,
6565name :'localGit' ,
66- message :'Please, provide a directory of the valid git repository: ' ,
66+ message :'Please, provide alocal directory of the valid git repository: ' ,
6767when :( answers ) => answers . source === localGit ,
6868} ) ;
6969
@@ -80,7 +80,7 @@ async function promptForMissingOptions(options) {
8080questions . push ( {
8181type :'list' ,
8282name :'source' ,
83- message :'It was provided both a local git directory and a remote address. Please, choose either one or those to parse: ' ,
83+ message :'A local git directory and a remote address were both provided . Please, choose either one or those to parse: ' ,
8484choices :[ localGit , remoteGit ] ,
8585default :localGit ,
8686} ) ;
@@ -89,7 +89,7 @@ async function promptForMissingOptions(options) {
8989// if the branch containing the code is not provided
9090if ( ! options . codeBranch ) {
9191questions . push ( {
92- type :'imput ' ,
92+ type :'input ' ,
9393name :'codeBranch' ,
9494message :'Please, provide the branch with the code commits: ' ,
9595} ) ;
@@ -98,7 +98,7 @@ async function promptForMissingOptions(options) {
9898// if the branch containing the setup files is not provided
9999if ( ! options . setupBranch ) {
100100questions . push ( {
101- type :'imput ' ,
101+ type :'input ' ,
102102name :'setupBranch' ,
103103message :'Please, provide the branch with the setup files (coderoad.yaml and tutorial.md): ' ,
104104} ) ;
@@ -132,10 +132,10 @@ export async function cli(args) {
132132
133133// If help called just print the help text and exit
134134if ( options . help ) {
135- console . log ( 'Docs can be found at github: https://github.com/coderoad/builder -cli/' ) ;
135+ console . log ( 'Docs can be found at github: https://github.com/coderoad/coderoad -cli/' ) ;
136136}
137137else if ( ! options . command ) {
138- console . log ( `The command is missing.Chose either 'create' or 'build' and its options.` )
138+ console . log ( `The command is missing.Choose either 'create' or 'build' and its options.` )
139139}
140140else {
141141switch ( options . command ) {