diff --git a/packages/amplify-cli-core/src/help/commands-info.ts b/packages/amplify-cli-core/src/help/commands-info.ts index 11cbd264cf8..690a289d72e 100644 --- a/packages/amplify-cli-core/src/help/commands-info.ts +++ b/packages/amplify-cli-core/src/help/commands-info.ts @@ -998,13 +998,13 @@ export const commandsInfo: Array = [ }, { subCommand: 'build', - subCommandDescription: 'Removes function resource from your local backend', + subCommandDescription: 'Builds all the functions in the project', subCommandUsage: 'amplify function build', subCommandFlags: [], }, { subCommand: 'remove', - subCommandDescription: 'Builds all the functions in the project', + subCommandDescription: 'Removes function resource from your local backend', subCommandUsage: 'amplify function remove', subCommandFlags: [], }, @@ -1124,4 +1124,11 @@ export const commandsInfo: Array = [ }, ], }, + { + command: 'build', + commandDescription: 'Builds all resources in the project', + commandUsage: 'amplify build', + commandFlags: [], + subCommands: [], + }, ];