File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export default class Get extends BaseCommand<typeof Get> {
5656 ) ;
5757 } catch ( error : any ) {
5858 this . log ( error ?. errorMessage || error ?. message || error , "error" ) ;
59- this . exit ( ) ;
59+ this . exit ( 1 ) ;
6060 }
6161 }
6262}
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ export default class Install extends BaseCommand<typeof Install> {
7676 } ) , "info" ) ;
7777 } catch ( error : any ) {
7878 this . log ( error ?. errorMessage || error ?. message || error , "error" )
79- this . exit ( )
79+ this . exit ( 1 )
8080 }
8181 }
8282}
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export default class Uninstall extends BaseCommand<typeof Uninstall> {
4949
5050 } catch ( error : any ) {
5151 this . log ( error ?. errorMessage || error ?. message || error , "error" )
52- this . exit ( ) ;
52+ this . exit ( 1 ) ;
5353 }
5454 }
5555
You can’t perform that action at this time.
0 commit comments