Skip to content

Commit 7f846f4

Browse files
authored
📄 Update Pre-Release DocsFixes quick start docs to reference the GitHub release tags more accurately.
Fixes quick start docs to reference the GitHub release tags more accurately.
1 parent 55fdca2 commit 7f846f4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

‎README.MD‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ Get-Help Install-ModuleFast -Full
2929

3030
### Single Line Installation (good for CI/CD)
3131

32-
This syntax allows you to both load and invoke Install-Modulefast. Any additional arguments you pass to the command are the same as if you provided them as arguments to Install-ModuleFast
32+
This syntax allows you to both load and invoke Install-Modulefast. Any additional arguments you pass to the command are the same as if you provided them as arguments to Install-ModuleFast. The module will automatically unload upon completion.
3333

3434
```powershell
3535
& ([scriptblock]::Create((iwr 'bit.ly/modulefast'))) ImportExcel
3636
```
3737

38-
The bit.ly link will always point to the latest release of ModuleFast by default. In order to avoid breaking changes, you can pin to a specific release. This is recommended when using CI systems such as GitHub Actions to install dependencies but is generally not needed on an interactive basis.
38+
The bit.ly link will always point to the latest release of ModuleFast by default. In order to avoid breaking changes, you can pin to a specific GitHub release. This is recommended when using CI systems such as GitHub Actions to install dependencies but is generally not needed on an interactive basis.
3939

4040
```powershell
41-
& ([scriptblock]::Create((iwr 'bit.ly/modulefast'))) -Release '1.0' ImportExcel
41+
& ([scriptblock]::Create((iwr 'bit.ly/modulefast'))) -Release 'v0.1.2' ImportExcel
4242
```
4343

4444
### ModuleSpecification Install

0 commit comments

Comments
 (0)