You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
824 B
24 lines
824 B
$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.12.1/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.12.1/DiscordChatExporter.CLI.zip'
|
|
}
|
|
Install-ChocolateyZipPackage @packageArgs |