Skip to content

Commit

Permalink
AU: 1 updated - git.install
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed May 11, 2017
1 parent 27e0c23 commit fb46d31
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion automatic/git.install/git.install.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>git.install</id>
<title>Git (Install)</title>
<version>2.11.1.20170208</version>
<version>2.13.0</version>
<authors>The Git Development Community</authors>
<owners>chocolatey</owners>
<summary>Git for Windows offers a native set of tools that bring the full feature set of the Git SCM to Windows</summary>
Expand Down
8 changes: 4 additions & 4 deletions automatic/git.install/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ in verifying that this package's contents are trustworthy.
The installer have been downloaded from GitHub and can be verified like this:

1. Download the following installers:
32-Bit: <https://github.com/git-for-windows/git/releases/download/v2.11.1.windows.1/Git-2.11.1-32-bit.exe>
64-Bit: <https://github.com/git-for-windows/git/releases/download/v2.11.1.windows.1/Git-2.11.1-64-bit.exe>
32-Bit: <https://github.com/git-for-windows/git/releases/download/v2.13.0.windows.1/Git-2.13.0-32-bit.exe>
64-Bit: <https://github.com/git-for-windows/git/releases/download/v2.13.0.windows.1/Git-2.13.0-64-bit.exe>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: A556C6F65C13F54DCCE64DF96BBC94A156BB7C9025A27CF0CAA329648ADAAC06
checksum64: 2C6408F98297B8F4AD0DF36F3AABAB67164B3B3D7BB3D91D49F237ABA566F8AC
checksum32: A1B45272F2E30A3545B96086CCF5A56A4154A47898A7D1D6803D51440236B3B5
checksum64: 6B298C597FFE960BEC84D52FC15438D0FF61A24AC9DE1C17433878EF656D50C8

File 'LICENSE.txt' is obtained from <https://github.com/git-for-windows/git/blob/703601d6780c32d33dadf19b2b367f2f79e1e34c/COPYING>
4 changes: 2 additions & 2 deletions automatic/git.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$filePath32 = "$toolsPath\Git-2.11.1-32-bit.exe"
$filePath64 = "$toolsPath\Git-2.11.1-64-bit.exe"
$filePath32 = "$toolsPath\Git-2.13.0-32-bit.exe"
$filePath64 = "$toolsPath\Git-2.13.0-64-bit.exe"
$installFile = if ((Get-ProcessorBits 64) -and $env:chocolateyForceX86 -ne 'true') {
Write-Host "Installing 64 bit version"; $filePath64 }
else { Write-Host "Installing 32 bit version"; $filePath32 }
Expand Down

0 comments on commit fb46d31

Please sign in to comment.