diff --git a/tools/chocopack-lite/tools/chocolateyInstall.ps1 b/tools/chocopack-lite/tools/chocolateyInstall.ps1 index b27b2fa9b3..4bfb1124c5 100644 --- a/tools/chocopack-lite/tools/chocolateyInstall.ps1 +++ b/tools/chocopack-lite/tools/chocolateyInstall.ps1 @@ -2,13 +2,11 @@ $ErrorActionPreference = 'Stop'; $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $pkgName = "kslite" $url = "https://github.com/Aptivi/NitrocidKS/releases/download/v0.1.0/0.1.0-bin-lite.zip" -$md5check = "55f6eab726e00230704127608ffd0ca3" Write-Output "<*>: for assumptions, <+> for progress, <-> for error" Write-Output "<*> Installation directory: $toolsDir" Write-Output "<*> Package Name: $pkgName" Write-Output "<*> URL: $url" -Write-Output "<*> Expected MD5 Sum: $md5check" Write-Output "<+> Configuration will be automatically generated on startup." -Install-ChocolateyZipPackage $pkgName $url $toolsDir -ChecksumType "md5" -Checksum $md5check +Install-ChocolateyZipPackage $pkgName $url $toolsDir diff --git a/tools/chocopack/tools/chocolateyInstall.ps1 b/tools/chocopack/tools/chocolateyInstall.ps1 index 4669c45f1d..7f4825b8f9 100644 --- a/tools/chocopack/tools/chocolateyInstall.ps1 +++ b/tools/chocopack/tools/chocolateyInstall.ps1 @@ -2,13 +2,11 @@ $ErrorActionPreference = 'Stop'; $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $pkgName = "KS" $url = "https://github.com/Aptivi/NitrocidKS/releases/download/v0.1.0/0.1.0-bin.zip" -$md5check = "93b86ccc032ffc6fd6a9baf948aaef5e" Write-Output "<*>: for assumptions, <+> for progress, <-> for error" Write-Output "<*> Installation directory: $toolsDir" Write-Output "<*> Package Name: $pkgName" Write-Output "<*> URL: $url" -Write-Output "<*> Expected MD5 Sum: $md5check" Write-Output "<+> Configuration will be automatically generated on startup." -Install-ChocolateyZipPackage $pkgName $url $toolsDir -ChecksumType "md5" -Checksum $md5check +Install-ChocolateyZipPackage $pkgName $url $toolsDir