Skip to content

Commit

Permalink
Corrected v1.11.0 x86 and x64 file hashes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kerrjnr committed Aug 20, 2024
1 parent 17f6d13 commit bc9189e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$url32 = "https://github.com/mapeditor/tiled/releases/download/v1.11.0/Tiled-1.11.0_Windows-7-8_x86.msi"
$checksum32 = "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855"
$checksum32 = "FB7A0CA755F43CB9934EABC5462CE8D095DA4DA143F72DBC2D7CA0EAC35B59A2"
$url64 = "https://github.com/mapeditor/tiled/releases/download/v1.11.0/Tiled-1.11.0_Windows-10+_x86_64.msi"
$checksum64 = "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855"
$checksum64 = "A727E599741BAAC5032B3C96E24E397C1AD045CFCD24CBD0B126CAC66A61B93E"

Install-ChocolateyPackage -PackageName "tiled" -FileType "msi" -SilentArgs "/quiet" -Url "$url32" -Url64bit "$url64" -ChecksumType "sha256" -Checksum $checksum32 -Checksum64 $checksum64 -validExitCodes @(0,3010)

0 comments on commit bc9189e

Please sign in to comment.