File tree Expand file tree Collapse file tree 8 files changed +16
-10
lines changed
Expand file tree Collapse file tree 8 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export default class Destroy extends CloudInstanceCommand {
1111 } ) ,
1212 ...CloudInstanceCommand . flags
1313 } ;
14- static summary = 'Permanently destroy the linked Cloud instance.' ;
14+ static summary = 'Permanently destroy the linked Cloud instance.' ;
1515
1616 async run ( ) : Promise < void > {
1717 const { flags } = await this . parse ( Destroy ) ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export default class FetchConfig extends CloudInstanceCommand {
1414 } ) ,
1515 ...CloudInstanceCommand . flags
1616 } ;
17- static summary = '[Cloud only] Print linked Cloud instance config (YAML or JSON).' ;
17+ static summary = '[Cloud only] Print linked Cloud instance config (YAML or JSON).' ;
1818
1919 async run ( ) : Promise < void > {
2020 const { flags } = await this . parse ( FetchConfig ) ;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export default class FetchInstances extends Command {
5252 required : false
5353 } )
5454 } ;
55- static summary = '[Cloud only] List Cloud instances in the current org/project.' ;
55+ static summary = '[Cloud only] List Cloud instances in the current org/project.' ;
5656
5757 async run ( ) : Promise < void > {
5858 const accountsClient = await createAccountsHubClient ( ) ;
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export default class GenerateSchema extends SharedInstanceCommand {
2929 } ) ,
3030 ...SharedInstanceCommand . flags
3131 } ;
32- static summary = 'Generate client schema file from instance schema and sync config.' ;
32+ static summary = 'Generate client schema file from instance schema and sync config.' ;
3333
3434 async getCloudSchema ( project : CloudProject ) : Promise < routes . GetSchemaResponse > {
3535 const { linked } = project ;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export default class PullInstance extends CloudInstanceCommand {
3030 static flags = {
3131 ...CloudInstanceCommand . flags
3232 } ;
33- static summary = 'Pull an existing Cloud instance: link and download config into local service.yaml and sync.yaml.' ;
33+ static summary = 'Pull an existing Cloud instance: link and download config into local service.yaml and sync.yaml.' ;
3434
3535 async run ( ) : Promise < void > {
3636 const { flags } = await this . parse ( PullInstance ) ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export default class Stop extends CloudInstanceCommand {
1111 } ) ,
1212 ...CloudInstanceCommand . flags
1313 } ;
14- static summary = 'Stop the linked Cloud instance (restart with deploy).' ;
14+ static summary = 'Stop the linked Cloud instance (restart with deploy).' ;
1515
1616 async run ( ) : Promise < void > {
1717 const { flags } = await this . parse ( Stop ) ;
Original file line number Diff line number Diff line change @@ -34,8 +34,11 @@ describe('destroy', () => {
3434
3535 afterEach ( ( ) => {
3636 process . chdir ( origCwd ) ;
37- if ( origPsToken === undefined ) { delete process . env . TOKEN ; }
38- else { process . env . TOKEN = origPsToken ; }
37+ if ( origPsToken === undefined ) {
38+ delete process . env . TOKEN ;
39+ } else {
40+ process . env . TOKEN = origPsToken ;
41+ }
3942
4043 if ( tmpDir && existsSync ( tmpDir ) ) rmSync ( tmpDir , { recursive : true } ) ;
4144 } ) ;
Original file line number Diff line number Diff line change @@ -34,8 +34,11 @@ describe('stop', () => {
3434
3535 afterEach ( ( ) => {
3636 process . chdir ( origCwd ) ;
37- if ( origPsToken === undefined ) { delete process . env . TOKEN ; }
38- else { process . env . TOKEN = origPsToken ; }
37+ if ( origPsToken === undefined ) {
38+ delete process . env . TOKEN ;
39+ } else {
40+ process . env . TOKEN = origPsToken ;
41+ }
3942
4043 if ( tmpDir && existsSync ( tmpDir ) ) rmSync ( tmpDir , { recursive : true } ) ;
4144 } ) ;
You can’t perform that action at this time.
0 commit comments