diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-12-12 09:40:20 -0800 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-12-12 09:40:20 -0800 |
commit | 00af6ead0c3d4b82e05bee4d9963ef3823bcf524 (patch) | |
tree | cd91fb7f14a0049f33dbaa687276b583befa2a51 /README.md | |
parent | 695edf7c9f5378d56797b23a24966624f9387eb1 (diff) | |
download | ssh2-rs-00af6ead0c3d4b82e05bee4d9963ef3823bcf524.zip |
Fix CI on README
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,7 +19,7 @@ Currently libssh2 requires linking against OpenSSL, and to compile libssh2 it also needs to find the OpenSSL headers. On OSX 10.10+ the OpenSSL headers have been removed, but if you're using Homebrew you can install them via: -``` +```sh brew install openssl ``` @@ -29,7 +29,7 @@ the header files are: [instr]: https://github.com/sfackler/rust-openssl#osx -``` +```sh export OPENSSL_INCLUDE_DIR=`brew --prefix openssl`/include export OPENSSL_LIB_DIR=`brew --prefix openssl`/lib ``` |