Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update help after "-" no longer required for --sfdx-url-stdin #933

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions messages/sfdxurl.store.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ NOTE: The "<%= config.bin %> org display --verbose" command displays the refresh

You can also create a JSON file that has a top-level property named sfdxAuthUrl whose value is the authorization URL. Finally, you can create a normal text file that includes just the URL and nothing else.

Alternatively, you can pipe the SFDX authorization URL through standard input by using the --sfdx-url-stdin flag and providing the '-' character as the value.
Alternatively, you can pipe the SFDX authorization URL through standard input by specifying the --sfdx-url-stdin flag.

# flags.sfdx-url-file.summary

Path to a file that contains the Salesforce DX authorization URL.

# flags.sfdx-url-stdin.summary

Specify '-' as this flag's value to pipe the Salesforce DX authorization URL through standard input (stdin).
Pipe the Salesforce DX authorization URL through standard input (stdin).

# examples

Expand All @@ -38,6 +38,6 @@ Specify '-' as this flag's value to pipe the Salesforce DX authorization URL thr

<%= config.bin %> <%= command.id %> --sfdx-url-file files/authFile.json --set-default --alias MyDefaultOrg

- Pipe the SFDX authorization URL from stdin by specifying the '-' value.
- Pipe the SFDX authorization URL from stdin:

<%= "\n $ echo url | " + config.bin %> <%= command.id %> --sfdx-url-stdin -
<%= "\n $ echo url | " + config.bin %> <%= command.id %> --sfdx-url-stdin
Loading