Skip to content

Commit b8a06ab

Browse files
authored
Merge pull request #308 from cielavenir/patch-1
troubleshooting.md: use /usr/local/opt/openssl for link source
2 parents 91ae261 + 8626af2 commit b8a06ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/troubleshooting.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ You can use [Homebrew](http://brew.sh) to easily install OpenSSL. First, instal
2727
brew install openssl
2828
```
2929

30-
After installation, the libraries of interest must be symlinked to `/usr/local/lib`; e.g. (adjust the version numbers as needed and also note that /usr/local/lib may not already exist and may need to be created before symlinking):
30+
After installation, the libraries of interest must be symlinked to `/usr/local/lib`; e.g. (note that /usr/local/lib may not already exist and may need to be created before symlinking):
3131

3232
```
33-
ln -s /usr/local/Cellar/openssl/1.0.2h_1/lib/libcrypto.1.0.0.dylib /usr/local/lib/libcrypto.1.0.0.dylib
34-
ln -s /usr/local/Cellar/openssl/1.0.2h_1/lib/libssl.1.0.0.dylib /usr/local/lib/libssl.1.0.0.dylib
33+
ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/libcrypto.1.0.0.dylib
34+
ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/libssl.1.0.0.dylib
3535
```
3636

3737
Restart VS Code after completing the installation and verify that the extension is working correctly.

0 commit comments

Comments
 (0)