File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
templates/cli/lib/commands Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -316,33 +316,33 @@ pull
316
316
pull
317
317
.command("function")
318
318
.alias("functions")
319
- .description("Pulling your {{ spec .title | caseUcfirst }} cloud function")
319
+ .description("Pull your {{ spec .title | caseUcfirst }} cloud function")
320
320
.option("--no-code", "Don't pull the function's code")
321
321
.option("--with-variables", `Pull function variables. ${chalk.red('recommend for testing purposes only')}`)
322
322
.action(actionRunner(pullFunctions))
323
323
324
324
pull
325
325
.command("collection")
326
326
.alias("collections")
327
- .description("Pulling your {{ spec .title | caseUcfirst }} collections")
327
+ .description("Pull your {{ spec .title | caseUcfirst }} collections")
328
328
.action(actionRunner(pullCollection))
329
329
330
330
pull
331
331
.command("bucket")
332
332
.alias("buckets")
333
- .description("Pulling your Appwrite buckets")
333
+ .description("Pull your Appwrite buckets")
334
334
.action(actionRunner(pullBucket))
335
335
336
336
pull
337
337
.command("team")
338
338
.alias("teams")
339
- .description("Pulling your Appwrite teams")
339
+ .description("Pull your Appwrite teams")
340
340
.action(actionRunner(pullTeam))
341
341
342
342
pull
343
343
.command("topic")
344
344
.alias("topics")
345
- .description("Initialise your Appwrite messaging topics")
345
+ .description("Pull your Appwrite messaging topics")
346
346
.action(actionRunner(pullMessagingTopic))
347
347
348
348
module.exports = {
Original file line number Diff line number Diff line change @@ -1717,9 +1717,9 @@ push
1717
1717
.action(actionRunner(pushMessagingTopic));
1718
1718
1719
1719
const deploy = new Command("deploy")
1720
- .description(commandDescriptions[' push'] )
1720
+ .description('Removed. Use appwrite push instead' )
1721
1721
.action(actionRunner(async () => {
1722
- warn("Did you mean to run 'appwrite push' command? ");
1722
+ warn("appwrite deploy has been removed. Please use 'appwrite push' instead ");
1723
1723
}));
1724
1724
1725
1725
module.exports = {
You can’t perform that action at this time.
0 commit comments