From db321f1e6b44a14da98cb47a0e007ea57c93f5d4 Mon Sep 17 00:00:00 2001
From: Friedrich von Never <friedrich@fornever.me>
Date: Sun, 30 Sep 2018 22:23:45 +0700
Subject: [PATCH] Fix the executable name (#179)

Now executable is on artifacts in AppVeyor.
---
 .appveyor/after_build.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.appveyor/after_build.ps1 b/.appveyor/after_build.ps1
index d139d740a..06ee89850 100644
--- a/.appveyor/after_build.ps1
+++ b/.appveyor/after_build.ps1
@@ -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