Skip to content

Commit

Permalink
lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
stopachka committed Nov 26, 2024
1 parent 8f17596 commit b1a89ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/packages/cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const PUSH_PULL_OPTIONS = new Set(["schema", "perms", "all"]);
function convertArgToBagWithErrorLogging(arg) {
if (!arg) {
return { ok: true, bag: "all" };
} else if (PUSH_PULL_OPTIONS.has(arg.trim().lowercase())) {
} else if (PUSH_PULL_OPTIONS.has(arg.trim().toLowerCase())) {
return { ok: true, bag: arg };
} else {
error(
Expand Down

0 comments on commit b1a89ec

Please sign in to comment.