Skip to content

Commit

Permalink
(totalcommander) fixed leading 0 in version
Browse files Browse the repository at this point in the history
closes #600
  • Loading branch information
majkinetor committed Mar 18, 2017
1 parent ae04366 commit 7fc2be7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions automatic/totalcommander/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ function global:au_GetLatest {

# Put combined installer as URL32 and installerzip as URL64 so I can use Get-RemoteFiles to download both later
@{
URL32 = $url
URL64 = "http://ghisler.fileburst.com/addons/installer.zip"
Version = $version
URL32 = $url
URL64 = "http://ghisler.fileburst.com/addons/installer.zip"
Version = ([version]$version).ToString() #prevent leading 0es, see https://github.com/chocolatey/chocolatey-coreteampackages/issues/600
FileType = 'exe'
}
}
Expand Down

0 comments on commit 7fc2be7

Please sign in to comment.