Skip to content

Commit 88157ed

Browse files
authored
Clarify how to pass contents of file to engflow_auth import command (#51)
- Add clarifications for how to store token and pass contents to `engflow_auth import` command.
1 parent 8495458 commit 88157ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ You can use `engflow_auth` to authenticate when no web browser is available, for
5656
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.
5757

5858
```bash
59-
engflow_auth import -store=file <<<"${ENGFLOW_CRED}"
59+
engflow_auth import -store=file <<<'${ENGFLOW_CRED}'
6060
```
61+
Replace `${ENGFLOW_CRED}` with the credential exported previously.
6162

6263
1. At the end of a job, remove the credential using the command below.
6364

0 commit comments

Comments
 (0)