21 lines
719 B
Plaintext
21 lines
719 B
Plaintext
$ErrorActionPreference = 'Stop';
|
|
|
|
$PackageName = 'gman'
|
|
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
|
|
$url64 = 'https://github.com/Dark-Alex-17/gman/releases/download/v$version/gman-windows.zip'
|
|
$checksum64 = '$hash_64'
|
|
|
|
$packageArgs = @{
|
|
packageName = $packageName
|
|
softwareName = $packageName
|
|
unzipLocation = $toolsDir
|
|
fileType = 'exe'
|
|
url = $url64
|
|
checksum = $checksum64
|
|
checksumType = 'sha256'
|
|
|
|
}
|
|
Install-ChocolateyZipPackage @packageArgs
|
|
$File = Get-ChildItem -File -Path $env:ChocolateyInstall\lib\$packageName\tools\ -Filter *.tar
|
|
Get-ChocolateyUnzip -fileFullPath $File.FullName -destination $env:ChocolateyInstall\lib\$packageName\tools\
|