Fix Broken Markdown in cli/README.md

This commit is contained in:
Evan Conrad 2019-05-16 11:30:01 -07:00 committed by GitHub
parent f2e5e31837
commit c7e9414bfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ $ migrate -database "$(cat config.json | jq '.database')"
##### YAML files
````
```
$ migrate -database "$(cat config/database.yml | ruby -ryaml -e "print YAML.load(STDIN.read)['database']")"
$ migrate -database "$(cat config/database.yml | python -c 'import yaml,sys;print yaml.safe_load(sys.stdin)["database"]')"
```