Skip to content

Commit dce470e

Browse files
cleanup
1 parent 6d1cd26 commit dce470e

File tree

8 files changed

+16
-10
lines changed

8 files changed

+16
-10
lines changed

cli/src/commands/destroy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

cli/src/commands/fetch/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

cli/src/commands/fetch/instances.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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();

cli/src/commands/generate/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

cli/src/commands/pull/instance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

cli/src/commands/stop.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

cli/test/commands/destroy.test.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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
});

cli/test/commands/stop.test.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)