@@ -63,7 +63,7 @@ async function promptForMissingOptions(options) {
63
63
questions . push ( {
64
64
type :'input' ,
65
65
name :'localGit' ,
66
- message :'Please, provide a directory of the valid git repository: ' ,
66
+ message :'Please, provide alocal directory of the valid git repository: ' ,
67
67
when :( answers ) => answers . source === localGit ,
68
68
} ) ;
69
69
@@ -80,7 +80,7 @@ async function promptForMissingOptions(options) {
80
80
questions . push ( {
81
81
type :'list' ,
82
82
name :'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: ' ,
84
84
choices :[ localGit , remoteGit ] ,
85
85
default :localGit ,
86
86
} ) ;
@@ -89,7 +89,7 @@ async function promptForMissingOptions(options) {
89
89
// if the branch containing the code is not provided
90
90
if ( ! options . codeBranch ) {
91
91
questions . push ( {
92
- type :'imput ' ,
92
+ type :'input ' ,
93
93
name :'codeBranch' ,
94
94
message :'Please, provide the branch with the code commits: ' ,
95
95
} ) ;
@@ -98,7 +98,7 @@ async function promptForMissingOptions(options) {
98
98
// if the branch containing the setup files is not provided
99
99
if ( ! options . setupBranch ) {
100
100
questions . push ( {
101
- type :'imput ' ,
101
+ type :'input ' ,
102
102
name :'setupBranch' ,
103
103
message :'Please, provide the branch with the setup files (coderoad.yaml and tutorial.md): ' ,
104
104
} ) ;
@@ -132,10 +132,10 @@ export async function cli(args) {
132
132
133
133
// If help called just print the help text and exit
134
134
if ( 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/' ) ;
136
136
}
137
137
else 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.` )
139
139
}
140
140
else {
141
141
switch ( options . command ) {