Skip to content

Commit

Permalink
feat: m365 install/uninstall example (#10171)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayzhang authored Oct 25, 2023
1 parent 041c93f commit 12cdcd5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/models/m365Sideloading.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const m365SideloadingCommand: CLICommand = {
],
examples: [
{
command: `${process.env.TEAMSFX_CLI_BIN_NAME} m365 sideloading --file-path appPackage.zip`,
command: `${process.env.TEAMSFX_CLI_BIN_NAME} m365 install --file-path appPackage.zip`,
description: "Sideloading the m365 app package",
},
{
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/commands/models/m365Unacquire.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ export const m365UnacquireCommand: CLICommand = {
],
examples: [
{
command: `${process.env.TEAMSFX_CLI_BIN_NAME} m365 unacquire --title-id U_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx`,
command: `${process.env.TEAMSFX_CLI_BIN_NAME} m365 uninstall --title-id U_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx`,
description: "Remove the acquired M365 App by Title ID",
},
{
command: `${process.env.TEAMSFX_CLI_BIN_NAME} m365 unacquire --manifest-id xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx`,
command: `${process.env.TEAMSFX_CLI_BIN_NAME} m365 uninstall --manifest-id xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx`,
description: "Remove the acquired M365 App by Manifest ID",
},
],
Expand Down

0 comments on commit 12cdcd5

Please sign in to comment.