Skip to content

Commit fda473c

Browse files
Update choco scripts
1 parent 61bdb5e commit fda473c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/chocolatey/certifytheweb.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
2626
<!-- version should MATCH as closely as possible with the underlying software -->
2727
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
2828
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
29-
<version>6.1.4</version>
29+
<version>6.1.5</version>
3030
<packageSourceUrl>https://github.com/webprofusion/certify/blob/development/scripts/chocolatey/</packageSourceUrl>
3131
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
3232
<owners>Webprofusion</owners>

scripts/chocolatey/tools/chocolateyinstall.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
$ErrorActionPreference = 'Stop';
22
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
3-
$url64 = 'https://certifytheweb.s3.amazonaws.com/downloads/archive/CertifyTheWebSetup_V6.1.4.exe'
3+
$url64 = 'https://certifytheweb.s3.amazonaws.com/downloads/archive/CertifyTheWebSetup_V6.1.5.exe'
44

55
$packageArgs = @{
66
packageName = $env:ChocolateyPackageName
77
unzipLocation = $toolsDir
88
fileType = 'exe'
99
url64bit = $url64
1010
softwareName = 'Certify The Web*'
11-
checksum64 = 'a8be4ab7baeb6baa46c8a8a01ff21ba0ec3fb0590d97deaf156fceec068435dc'
11+
checksum64 = '31eced538534b182c55ee68b1541333f7763e1f8adca79cc57cd407daffaf6a0'
1212
checksumType64= 'sha256'
1313
validExitCodes= @(0)
1414
silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'

0 commit comments

Comments
 (0)