mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 15:53:30 -07:00
19 lines
641 B
PowerShell
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 |