Skip to content

Commit 4a976b0

Browse files
committed
chore: bump package
1 parent b821ec7 commit 4a976b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-review-gpt",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"description": "Your AI code reviewer",
55
"bin": {
66
"code-review-gpt": "./dist/index.js"

src/args.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ export const getYargs = async () => {
1414
.command("configure", "Configure the script")
1515
.parseSync();
1616

17-
if (argv.ci && !argv._[0]) {
17+
if (argv.ci) {
1818
argv._[0] = "review";
1919
console.info(
20-
"Running in CI mode, defaulting to review. Please update the command to: npx code-review-gpt review"
20+
"Running in CI mode, defaulting to review."
2121
);
2222
return argv;
2323
}

0 commit comments

Comments
 (0)