Skip to content

Commit

Permalink
v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhitsolutions committed Jul 18, 2019
1 parent c8dc272 commit 922201d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log for PSReleaseTools

## 1.3.1

+ Fixed installation issue with spaces in filenames (Issue #13)

## v1.3.0

+ Added online help links
Expand Down
Binary file modified PSReleaseTools.psd1
Binary file not shown.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Install-PSPreview -mode passive

[Install-PSCore](/Docs/Install-PSCore.md) will do the same thing but for the latest stable release.

![install-pscore](/images/install-pscore.png)
![Install-PSCore](/images/install-pscore.png)

The functionality of these commands could have been combined, but I decided to leave this as separate commands so there is no confusion about what you are installing.

Expand All @@ -95,4 +95,4 @@ Install-Module PSReleaseTools -scope currentuser

I have a few other ideas for commands I might add to this module. If you have suggestions or encounter problems, please post an issue in the GitHub repository.

Last updated 2019-07-12 12:56:02Z UTC
Last updated 2019-07-18 13:35:25Z UTC
9 changes: 1 addition & 8 deletions functions/private.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,13 @@ Function InstallMsi {
)

Write-Verbose "[$($myinvocation.mycommand)] Creating install command for $Path"
$cmd = "$path"

if ($Mode -eq "quiet") {
$cmd += " /quiet"
}
elseif ($Mode -eq "Passive") {
$cmd += " /passive"
}
$cmd = "Start-Process -filepath '$Path' -argumentlist '/$mode'"
Write-Verbose "[$($myinvocation.mycommand)] Using $Mode mode"
$sb = [scriptblock]::Create($cmd)

if ($pscmdlet.ShouldProcess($sb)) {
Invoke-Command -scriptblock $sb
}


} #close installmsi

0 comments on commit 922201d

Please sign in to comment.