Skip to content

Commit 807e789

Browse files
Merge pull request #513 from jocubeit/fix-typos-in-generic-client-options
Fix typos in client endpoint, projectId & key opts
2 parents 409e9a6 + a92c290 commit 807e789

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/cli/lib/commands/generic.js.twig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ const logout = new Command("logout")
4444
const client = new Command("client")
4545
.description(commandDescriptions['client'])
4646
.option("--selfSigned <value>", "Configure the CLI to use a self-signed certificate ( true or false )", parseBool)
47-
.option("--endpoint <endpoint>", "Set your Apwrite server endpoint")
48-
.option("--projectId <projectId>", "Set your Apwrite project ID")
49-
.option("--key <key>", "Set your Apwrite server's API key")
47+
.option("--endpoint <endpoint>", "Set your Appwrite server endpoint")
48+
.option("--projectId <projectId>", "Set your Appwrite project ID")
49+
.option("--key <key>", "Set your Appwrite server's API key")
5050
.option("--debug", "Print CLI debug information")
5151
.option("--reset", "Reset the CLI configuration")
5252
.action(actionRunner(async ({ selfSigned, endpoint, projectId, key, debug, reset }, command) => {

0 commit comments

Comments
 (0)