Skip to content

Commit 4a301f8

Browse files
committed
fix(cli): deprecation notice in the deploy command
1 parent 1914bd6 commit 4a301f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1715,9 +1715,9 @@ push
17151715
.action(actionRunner(pushMessagingTopic));
17161716

17171717
const deploy = new Command("deploy")
1718-
.description(commandDescriptions['push'])
1718+
.description('Deprecated. Use appwrite push instead')
17191719
.action(actionRunner(async () => {
1720-
warn("Did you mean to run 'appwrite push' command?");
1720+
warn("appwrite deploy has been deprecated. Please use 'appwrite push' instead");
17211721
}));
17221722

17231723
module.exports = {

0 commit comments

Comments
 (0)