Skip to content

Commit 7211e53

Browse files
committed
✨ Allow specifying the release version via environment variable
1 parent 44c656f commit 7211e53

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ModuleFast.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ using namespace System.Reflection
88
[CmdletBinding(PositionalBinding = $false)]
99
param (
1010
#Specify a specific release to use, otherwise 'latest' is used
11-
[string]$Release = 'latest',
11+
[string]$Release = $ENV:MFRELEASE ?? 'latest',
1212
#Specify the user
1313
[string]$User = 'JustinGrote',
1414
#Specify the repo

0 commit comments

Comments
 (0)