Skip to content

Commit e6eea7c

Browse files
authored
Merge pull request #636 from salesforcecli/sm/remove-dead-code
chore: remove unused code
2 parents 9bd9a1b + 3bde536 commit e6eea7c

File tree

3 files changed

+1
-253
lines changed

3 files changed

+1
-253
lines changed

src/commands/cli/tarballs/smoke.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default class SmokeTest extends SfCommand<void> {
8585
private async execute(executable: string, args: string, silent = false): Promise<string> {
8686
const command = `${executable} ${args}`;
8787
try {
88-
const { stdout } = await exec(command);
88+
const { stdout } = await exec(command, { maxBuffer: 1024 * 1024 * 100 });
8989
if (!silent) {
9090
this.styledHeader(command);
9191
this.log(stdout);

src/pluginCommand.ts

Lines changed: 0 additions & 181 deletions
This file was deleted.

test/pluginCommand.test.ts

Lines changed: 0 additions & 71 deletions
This file was deleted.

0 commit comments

Comments
 (0)