You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix#292: Check for Homebrew's OpenSSL libraries correctly
This change improves the way we check for OpenSSL libraries that must be
installed on the user's macOS system before PowerShell Editor Services can
be loaded successfully. Previously we were looking for a path that
required a symbolic link to be created after installing OpenSSL. It turns
out that PowerShell on macOS has built-in library paths which target
Homebrew's installation path for OpenSSL. We now check primarily for this
path before looking at the system-wide installation path.
around creating symbolic links in your `/usr/local/lib` path which are needed when using other means of installation.
25
37
26
-
```
27
-
brew install openssl
28
-
```
29
-
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):
38
+
First, install Homebrew and then run the following command:
0 commit comments