Skip to content

Commit

Permalink
und - Removed hash checking from Chocolatey
Browse files Browse the repository at this point in the history
---

Type: und
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Feb 20, 2024
1 parent a1a739f commit 9fc5faa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions tools/chocopack-lite/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 1 addition & 3 deletions tools/chocopack/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 9fc5faa

Please sign in to comment.