Skip to content

Commit

Permalink
Update README.md (#52)
Browse files Browse the repository at this point in the history
The single quotes with a variable substitution won't work. Set a
variable first before using it.
  • Loading branch information
rogerhu authored Sep 16, 2024
1 parent 88157ed commit 5fc1b5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ You can use `engflow_auth` to authenticate when no web browser is available, for
1. At the beginning of a job, retrieve the secret and import it on stdin using the command below. The `-store=file` flag may be necessary to store the credential as an unencrypted file instead of your encrypted keyring. Non-interactive environments typically don't have an encrypted keyring.

```bash
engflow_auth import -store=file <<<'${ENGFLOW_CRED}'
ENGFLOW_CRED='<insert token info here>'
engflow_auth import -store=file <<< "${ENGFLOW_CRED}"
```
Replace `${ENGFLOW_CRED}` with the credential exported previously.

Expand Down

0 comments on commit 5fc1b5b

Please sign in to comment.