From 2450b7256d032edd217c71a79215d1926f0e709f Mon Sep 17 00:00:00 2001 From: Jeremy Cornett Date: Tue, 11 Feb 2020 09:52:15 -0700 Subject: [PATCH] Upgrade to Ant 1.10.6. --- packages/ant/ant.nuspec | 2 +- packages/ant/tools/chocolateyInstall.ps1 | 6 +++--- packages/ant/tools/chocolateyUninstall.ps1 | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/ant/ant.nuspec b/packages/ant/ant.nuspec index ff59bc5d..e2fcd6df 100644 --- a/packages/ant/ant.nuspec +++ b/packages/ant/ant.nuspec @@ -3,7 +3,7 @@ ant Apache Ant - 1.10.5 + 1.10.6 Apache Anthony Mastrean Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. diff --git a/packages/ant/tools/chocolateyInstall.ps1 b/packages/ant/tools/chocolateyInstall.ps1 index d789e896..29568b52 100644 --- a/packages/ant/tools/chocolateyInstall.ps1 +++ b/packages/ant/tools/chocolateyInstall.ps1 @@ -1,12 +1,12 @@ $tools = Split-Path $MyInvocation.MyCommand.Definition $package = Split-Path $tools -$ant_home = Join-Path $package 'apache-ant-1.10.5' +$ant_home = Join-Path $package 'apache-ant-1.10.6' $ant_bat = Join-Path $ant_home 'bin/ant.bat' Install-ChocolateyZipPackage ` -PackageName 'ant' ` - -Url 'https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.5-bin.zip' ` - -Checksum '2E48F9E429D67708F5690BC307232F08440D01EBE414059292B6543971DA9C7CD259C21533B9163B4DD753321C17BD917ADF8407D03245A0945FC30A4E633163' ` + -Url 'https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.6-bin.zip' ` + -Checksum '9ba9467f05f1c7fa7161f857b0085461ce28401a2fe01a8062eec2254eaafc4b239fb3dc9298b5df5f27c2bb64618a8606a6885aa171604c541f4d5fe394b361' ` -ChecksumType 'SHA512' ` -UnzipLocation $package diff --git a/packages/ant/tools/chocolateyUninstall.ps1 b/packages/ant/tools/chocolateyUninstall.ps1 index 72fb7de1..1af0de4d 100644 --- a/packages/ant/tools/chocolateyUninstall.ps1 +++ b/packages/ant/tools/chocolateyUninstall.ps1 @@ -1,6 +1,6 @@ $tools = Split-Path $MyInvocation.MyCommand.Definition $package = Split-Path $tools -$ant_home = Join-Path $package 'apache-ant-1.10.5' +$ant_home = Join-Path $package 'apache-ant-1.10.6' $ant_bat = Join-Path $ant_home 'bin/ant.bat' Uninstall-BinFile -Name 'ant' -Path $ant_bat