@@ -26,6 +26,10 @@ const SnapPreviewExePath = "/snap/bin/pwsh-preview";
26
26
const MacOSExePath = "/usr/local/bin/pwsh" ;
27
27
const MacOSPreviewExePath = "/usr/local/bin/pwsh-preview" ;
28
28
29
+ const MacOSHomebrewExePath = "/opt/homebrew/bin/pwsh" ;
30
+ const MacOSHomebrewLTSExePath = "/opt/homebrew/bin/pwsh-lts" ;
31
+ const MacOSHomebrewPreviewExePath = "/opt/homebrew/bin/pwsh-preview" ;
32
+
29
33
export enum OperatingSystem {
30
34
Unknown ,
31
35
Windows ,
@@ -169,6 +173,7 @@ export class PowerShellExeFinder {
169
173
* Iterates through all the possible well-known PowerShell installations on a machine.
170
174
* Returned values may not exist, but come with an .exists property
171
175
* which will check whether the executable exists.
176
+ * TODO: We really need to define the order in which we search for stable/LTS/preview/daily
172
177
*/
173
178
private async * enumerateDefaultPowerShellInstallations ( ) : AsyncIterable < IPossiblePowerShellExe | undefined > {
174
179
// Find PSCore stable first
@@ -183,10 +188,14 @@ export class PowerShellExeFinder {
183
188
case OperatingSystem . Windows :
184
189
// Windows may have a 32-bit pwsh.exe
185
190
yield this . findPSCoreWindowsInstallation ( { useAlternateBitness : true } ) ;
186
-
187
191
// Also look for the MSIX/UWP installation
188
192
yield await this . findPSCoreMsix ( ) ;
193
+ break ;
189
194
195
+ case OperatingSystem . MacOS :
196
+ // On MacOS, find the Homebrew installations
197
+ yield this . findPSCoreHomebrewStable ( ) ;
198
+ yield this . findPSCoreHomebrewLTS ( ) ;
190
199
break ;
191
200
}
192
201
@@ -220,6 +229,11 @@ export class PowerShellExeFinder {
220
229
yield this . findWinPS ( { useAlternateBitness : true } ) ;
221
230
222
231
break ;
232
+
233
+ case OperatingSystem . MacOS :
234
+ // On MacOS, find the Homebrew preview
235
+ yield this . findPSCoreHomebrewPreview ( ) ;
236
+ break ;
223
237
}
224
238
225
239
// Look for PSCore daily
@@ -336,6 +350,8 @@ export class PowerShellExeFinder {
336
350
* if ($Daily) {
337
351
* $Destination = "${Destination}-daily"
338
352
* }
353
+ *
354
+ * TODO: Remove this after the daily is officially no longer supported.
339
355
*/
340
356
private findPSCoreDaily ( ) : IPossiblePowerShellExe | undefined {
341
357
switch ( this . platformDetails . operatingSystem ) {
@@ -359,6 +375,19 @@ export class PowerShellExeFinder {
359
375
}
360
376
}
361
377
378
+ // The Homebrew installations of PowerShell on Apple Silicon are no longer in the default PATH.
379
+ private findPSCoreHomebrewStable ( ) : IPossiblePowerShellExe {
380
+ return new PossiblePowerShellExe ( MacOSHomebrewExePath , "PowerShell (Homebrew)" ) ;
381
+ }
382
+
383
+ private findPSCoreHomebrewLTS ( ) : IPossiblePowerShellExe {
384
+ return new PossiblePowerShellExe ( MacOSHomebrewLTSExePath , "PowerShell LTS (Homebrew)" ) ;
385
+ }
386
+
387
+ private findPSCoreHomebrewPreview ( ) : IPossiblePowerShellExe {
388
+ return new PossiblePowerShellExe ( MacOSHomebrewPreviewExePath , "PowerShell Preview (Homebrew)" ) ;
389
+ }
390
+
362
391
private findPSCoreDotnetGlobalTool ( ) : IPossiblePowerShellExe {
363
392
const exeName : string = this . platformDetails . operatingSystem === OperatingSystem . Windows
364
393
? "pwsh.exe"
@@ -398,6 +427,7 @@ export class PowerShellExeFinder {
398
427
return undefined ;
399
428
}
400
429
430
+ // TODO: Are snaps still a thing?
401
431
private findPSCoreStableSnap ( ) : IPossiblePowerShellExe {
402
432
return new PossiblePowerShellExe ( SnapExePath , "PowerShell Snap" ) ;
403
433
}
0 commit comments