1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* update chocolatey build with sha1 sums for all msi packages

This commit is contained in:
Reinhard Pointner 2015-06-02 18:36:33 +00:00
parent cefda5e8d0
commit a4be46d2cd

View File

@ -1,12 +1,11 @@
$name = 'filebot'
$type = 'msi'
$silent = '/quiet'
$checksumType32 = 'sha1'
$checksumType64 = 'sha1'
$algorithm = 'sha1'
$url32 = 'https://downloads.sourceforge.net/project/filebot/filebot/FileBot_@{version}/FileBot_@{version}_x86.msi'
$url64 = 'https://downloads.sourceforge.net/project/filebot/filebot/FileBot_@{version}/FileBot_@{version}_x64.msi'
$checksum32 = '@{x86.msi.sha1}'
$checksum64 = '@{x64.msi.sha1}'
Install-ChocolateyPackage $name $type $silent $url32 $url64 -checksum $checksum32 -checksumType $checksumType32 -checksum64 $checksum64 -checksumType64 $checksumType64
Install-ChocolateyPackage $name $type $silent $url32 $url64 -checksum $checksum32 -checksumType $algorithm -checksum64 $checksum64 -checksumType64 $algorithm