File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 144144 "deploy" : " npm run pkg && npm run notarize && npm run upload" ,
145145 "prepublishOnly" : " npm run build"
146146 },
147- "version" : " 1.1.0-beta2 " ,
147+ "version" : " 1.1.0-beta3 " ,
148148 "bugs" : " https://github.com/codifycli/codify/issues" ,
149149 "keywords" : [
150150 " oclif" ,
Original file line number Diff line number Diff line change @@ -215,7 +215,9 @@ export class DefaultReporter implements Reporter {
215215 ctx . log ( `Plugin: "${ pluginName } " requires root access to run command: "sudo ${ data . command } "` ) ;
216216 const title = `Plugin: "${ pluginName } " requires root access to run command: "sudo ${ data . command } "` ;
217217
218- return this . promptSudoPassword ( { title, cancellable : false } ) ;
218+ const password = await this . promptSudoPassword ( { title, cancellable : false } ) ;
219+ await this . displayProgress ( ) ;
220+ return password ;
219221 }
220222
221223 displayPlan ( plan : Plan ) : void {
You can’t perform that action at this time.
0 commit comments