Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export SECRET_SHELL_VARIABLE=<decrypted data>
You can then have your shell evaluate this output:

```shell
$ eval $(ejson2env test.ejson)
$ eval "$(ejson2env test.ejson)"
```

## Using ejson2env
Expand Down
2 changes: 1 addition & 1 deletion man/ejson2env.1.ronn
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ For example:
```
#!/bin/sh

eval $(ejson2env /config/secrets.production.ejson)
eval "$(ejson2env /config/secrets.production.ejson)"

echo $DB_PASSWORD
```
Expand Down
Loading