Skip to content

Commit

Permalink
fix version command for devbox cli
Browse files Browse the repository at this point in the history
  • Loading branch information
burritobill committed Sep 6, 2024
1 parent 8b0ab42 commit ac90daf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/tools/devbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ export class DevboxInstallService extends BaseInstallService {
}

Check warning on line 58 in src/cli/tools/devbox.ts

View check run for this annotation

Codecov / codecov/patch

src/cli/tools/devbox.ts#L56-L58

Added lines #L56 - L58 were not covered by tests

override async test(_version: string): Promise<void> {
await execa(this.name, ['--version'], { stdio: ['inherit', 'inherit', 1] });
await execa(this.name, ['version'], { stdio: ['inherit', 'inherit', 1] });
}

Check warning on line 62 in src/cli/tools/devbox.ts

View check run for this annotation

Codecov / codecov/patch

src/cli/tools/devbox.ts#L61-L62

Added lines #L61 - L62 were not covered by tests
}

0 comments on commit ac90daf

Please sign in to comment.