File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ export default class Deploy extends AppCLIBaseCommand {
68
68
flags [ "app-uid" ] = this . manifestData ?. uid ?? flags [ "app-uid" ] ;
69
69
this . sharedConfig . org = await this . getOrganization ( ) ;
70
70
const app = await this . fetchAppDetails ( ) ;
71
+ this . flags [ "app-uid" ] = app ?. uid ;
71
72
72
73
const apolloClient = await this . getApolloClient ( ) ;
73
74
const projects = await getProjects ( apolloClient ) ;
@@ -117,7 +118,7 @@ export default class Deploy extends AppCLIBaseCommand {
117
118
this . log ( `App URL: ${ flags [ "app-url" ] } ` , "info" ) ;
118
119
} catch ( error : any ) {
119
120
this . log ( error ?. errorMessage || error ?. message || error , "error" ) ;
120
- this . exit ( 1 ) ;
121
+ process . exit ( 1 ) ;
121
122
}
122
123
}
123
124
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ export default class Reinstall extends AppCLIBaseCommand {
120
120
this . displayStackUrl ( ) ;
121
121
} catch ( error : any ) {
122
122
this . log ( error ?. errorMessage || error ?. message || error , "error" ) ;
123
- this . exit ( 1 ) ;
123
+ process . exit ( 1 ) ;
124
124
}
125
125
}
126
126
You can’t perform that action at this time.
0 commit comments