Skip to content

Commit

Permalink
Description updates
Browse files Browse the repository at this point in the history
  • Loading branch information
gfarb committed Sep 29, 2022
1 parent 7b25578 commit 23399ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## `sfdx deliverability:access [-l <string>] [-u <string>]`

This SFDX Plugin was created to set Email Deliverability Access Level for an org easily and quickly. This project uses Selenium, Webdriver and headless browsing to open Setup in the target org and set Email Deliverability Access Level to the desired value.
This SFDX Plugin was created to set Email Deliverability Access Level for an org easily and quickly. This project uses Puppeteer and headless browsing to open Setup in the target org and set Email Deliverability Access Level to the desired value.

```
USAGE
Expand Down Expand Up @@ -37,10 +37,9 @@ sfdx deliverability:access --help

## Requirements

1. [Google Chrome](https://www.google.com/chrome)
2. [Node.js](https://nodejs.org/en/)
3. [Salesforce CLI](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_install_cli.htm)
4. [Salesforce Lightning](https://www.salesforce.com/products/platform/lightning/)
1. [Node.js](https://nodejs.org/en/)
1. [Salesforce CLI](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_install_cli.htm)
1. [Salesforce Lightning](https://www.salesforce.com/products/platform/lightning/)

## License

Expand All @@ -51,3 +50,4 @@ This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md
- [Salesforce CLI](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_install_cli.htm)
- [Salesforce CLI Plug-ins](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_install_plugin_version.htm)
- [Salesforce Email Deliverability](https://help.salesforce.com/s/articleView?id=sf.data_sandbox_email_deliverability.htm&type=5)
- [Puppeteer](https://pptr.dev/)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sfdx-deliverability-access",
"description": "SFDX Plugin to set Email Deliverability Access Level for an org via command line. This project uses Selenium, Webdriver and headless browsing to open Setup in the target org and set Email Deliverability Access Level to the desired value.",
"description": "SFDX Plugin to set Email Deliverability Access Level for an org via command line. This project uses Puppeteer and headless browsing to open Setup in the target org and set Email Deliverability Access Level to the desired value.",
"version": "0.4.4",
"author": "gfarb @gfarb",
"bugs": "https://github.com/gfarb/sfdx-deliverability-access/issues",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/deliverability/access.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export default class Access extends SfdxCommand {
} finally {
await browser?.close();
if (error !== undefined) {
this.ux.stopSpinner(`❌ Access Level could not be set. The following error occurred:\n${String(error)}`);
this.ux.stopSpinner(`❌ Access Level could not be set. The following error occurred:\n\n${String(error)}`);
} else {
this.ux.stopSpinner('🎉 Email Deliverability Access Level has been set!');
}
Expand Down

0 comments on commit 23399ce

Please sign in to comment.