DiscordChatExporter/Deploy/Choco/tools/chocolateyinstall.ps1
2019-04-07 13:01:38 +03:00

19 lines
641 B
PowerShell

$ErrorActionPreference = 'Stop';
# --- GUI ---
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.11/DiscordChatExporter.zip'
}
Install-ChocolateyZipPackage @packageArgs
# --- CLI ---
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.11/DiscordChatExporter.CLI.zip'
}
Install-ChocolateyZipPackage @packageArgs