Fix the executable name (#179)

Now executable is on artifacts in AppVeyor.
This commit is contained in:
Friedrich von Never 2018-09-30 22:23:45 +07:00 committed by Alex
parent 4a63c69d7f
commit db321f1e6b
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