mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-22 19:05:09 -04:00
24 lines
No EOL
820 B
PowerShell
24 lines
No EOL
820 B
PowerShell
$ErrorActionPreference = 'Stop'
|
|
$packageName = $env:ChocolateyPackageName
|
|
$installDirPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
|
|
|
|
# Install package (GUI)
|
|
|
|
$packageArgs = @{
|
|
packageName = $packageName
|
|
unzipLocation = $installDirPath
|
|
url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.11/DiscordChatExporter.zip'
|
|
}
|
|
Install-ChocolateyZipPackage @packageArgs
|
|
|
|
# Mark the executable as GUI
|
|
New-Item (Join-Path $installDirPath "DiscordChatExporter.exe.gui") -ItemType File -Force
|
|
|
|
# Install package (CLI)
|
|
|
|
$packageArgs = @{
|
|
packageName = $packageName
|
|
unzipLocation = $installDirPath
|
|
url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.11/DiscordChatExporter.CLI.zip'
|
|
}
|
|
Install-ChocolateyZipPackage @packageArgs |