Skip to content

Commit f030e7e

Browse files
author
gidoichi
committed
fix(OCO_HOOK_AUTO_UNCOMMENT): set value on oco config set
1 parent ebbaff0 commit f030e7e

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

out/cli.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51064,6 +51064,7 @@ var configValidators = {
5106451064
typeof value === "boolean",
5106551065
"Must be true or false"
5106651066
);
51067+
return value;
5106751068
}
5106851069
};
5106951070
var OCO_AI_PROVIDER_ENUM = /* @__PURE__ */ ((OCO_AI_PROVIDER_ENUM2) => {

out/github-action.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71635,6 +71635,7 @@ var configValidators = {
7163571635
typeof value === "boolean",
7163671636
"Must be true or false"
7163771637
);
71638+
return value;
7163871639
}
7163971640
};
7164071641
var OCO_AI_PROVIDER_ENUM = /* @__PURE__ */ ((OCO_AI_PROVIDER_ENUM2) => {

src/commands/config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -827,6 +827,7 @@ export const configValidators = {
827827
typeof value === 'boolean',
828828
'Must be true or false'
829829
);
830+
return value;
830831
}
831832
};
832833

0 commit comments

Comments
 (0)