File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ that Visual Studio Code provides.
10
10
11
11
- ** Windows 7 through 10** with PowerShell v3 and higher
12
12
- ** Linux** with PowerShell v6 (all PowerShell-supported distribtions)
13
- - ** Mac OS X** with PowerShell v6
13
+ - ** macOS and OS X** with PowerShell v6
14
14
15
15
Read the [ installation instructions] ( https://github.com/PowerShell/PowerShell/blob/master/docs/learning-powershell/using-vscode.md )
16
16
to get more details on how to use the extension on these platforms.
@@ -67,7 +67,7 @@ Restart Visual Studio Code and try to reproduce the problem. Once you are done
67
67
that, zip up the logs in the corresponding folder for your operating system:
68
68
69
69
- ** Windows** : ` $HOME\.vscode\extensions\ms-vscode.PowerShell-<CURRENT VERSION>\logs `
70
- - ** Linux and Mac OS X ** : ` ~/.vscode/extensions/ms-vscode.PowerShell-<CURRENT VERSION>/logs `
70
+ - ** Linux and macOS ** : ` ~/.vscode/extensions/ms-vscode.PowerShell-<CURRENT VERSION>/logs `
71
71
72
72
You have two options for sending us the logs:
73
73
Original file line number Diff line number Diff line change 3
3
This document contains troubleshooting steps for commonly reported issues when using the
4
4
PowerShell extension for Visual Studio Code.
5
5
6
- ## Mac OS X
6
+ ## macOS ( OS X)
7
7
8
8
### 1. PowerShell IntelliSense does not work, can't debug scripts
9
9
10
- The most common problem when the PowerShell extension doesn't work on Mac OS X is that
10
+ The most common problem when the PowerShell extension doesn't work on macOS is that
11
11
OpenSSL is not installed. You can check for the installation of OpenSSL by looking for
12
12
the following files:
13
13
@@ -30,7 +30,7 @@ do not have OpenSSL installed.
30
30
31
31
#### Installing OpenSSL via Homebrew
32
32
33
- We ** highly recommend** that you use [ Homebrew] ( http://brew.sh ) to install OpenSSL. The PowerShell distribution for OS X
33
+ We ** highly recommend** that you use [ Homebrew] ( http://brew.sh ) to install OpenSSL. The PowerShell distribution for macOS
34
34
has built-in support for Homebrew's OpenSSL library paths. If you install with Homebrew, you will avoid
35
35
[ security concerns] ( https://github.com/PowerShell/PowerShell/blob/master/docs/installation/linux.md#openssl )
36
36
around creating symbolic links in your ` /usr/local/lib ` path which are needed when using other means of installation.
Original file line number Diff line number Diff line change @@ -454,15 +454,15 @@ export class SessionManager {
454
454
else if ( os . platform ( ) == "darwin" ) {
455
455
powerShellExePath = "/usr/local/bin/powershell" ;
456
456
457
- // Check for OpenSSL dependency on OS X . Look for the default Homebrew installation
457
+ // Check for OpenSSL dependency on macOS . Look for the default Homebrew installation
458
458
// path and if that fails check the system-wide library path.
459
459
if ( ! ( utils . checkIfFileExists ( "/usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib" ) &&
460
460
utils . checkIfFileExists ( "/usr/local/opt/openssl/lib/libssl.1.0.0.dylib" ) ) &&
461
461
! ( utils . checkIfFileExists ( "/usr/local/lib/libcrypto.1.0.0.dylib" ) &&
462
462
utils . checkIfFileExists ( "/usr/local/lib/libssl.1.0.0.dylib" ) ) ) {
463
463
var thenable =
464
464
vscode . window . showWarningMessage (
465
- "The PowerShell extension will not work without OpenSSL on Mac OS X" ,
465
+ "The PowerShell extension will not work without OpenSSL on macOS and OS X" ,
466
466
"Show Documentation" ) ;
467
467
468
468
thenable . then (
You can’t perform that action at this time.
0 commit comments