refactor(tools): change noRemote option from literal true to boolean with default false

This commit is contained in:
2026-03-23 13:17:53 +05:30
parent 78784fabb6
commit 8b85bc4a39
+2 -1
View File
@@ -21,7 +21,8 @@ Arguments:
"Remote handling: string=specific remote, undefined=first available remote", "Remote handling: string=specific remote, undefined=first available remote",
), ),
noRemote: tool.schema noRemote: tool.schema
.literal(true) .boolean()
.default(false)
.describe("Only delete local tags, don't push to remote.") .describe("Only delete local tags, don't push to remote.")
.optional(), .optional(),
}, },