Fix the executable name

This commit is contained in:
Friedrich von Never 2018-08-16 23:15:25 +07:00
parent 4a63c69d7f
commit ed7d42eee9
No known key found for this signature in database
GPG Key ID: AE6AA71B623383EB
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ function Pack-Files($ext, $includeExe, $targetPath, $archiveName) {
$itemsToPack = @("$targetPath\*.$ext", "$targetPath\platforms\*.$ext", "$targetPath\imageformats\*.$ext")
if ($includeExe) {
$itemsToPack += @("$targetPath\Telegram.exe")
$itemsToPack += @("$targetPath\kepka.exe")
}
7z a -mmt $archiveName @itemsToPack