From 88ebe105c0a4cfadcdb0a3150a74327c5068273e Mon Sep 17 00:00:00 2001 From: JustArchi Date: Wed, 27 Sep 2017 03:03:38 +0200 Subject: [PATCH] Include ico also in generic variant --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index f362c0596..d48164bae 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -75,7 +75,7 @@ after_test: # Until https://github.com/dotnet/cli/issues/3267 happens, we'll hack dotnet binary icon on Windows and include .ico file on other platforms if (Test-Path -Path "ArchiSteamFarm\out\$RUNTIME\ArchiSteamFarm.exe" -PathType Leaf) { tools\rcedit\rcedit-x64.exe "ArchiSteamFarm\out\$RUNTIME\ArchiSteamFarm.exe" --set-icon 'resources\ASF.ico' - } elseif (Test-Path -Path "ArchiSteamFarm\out\$RUNTIME\ArchiSteamFarm" -PathType Leaf) { + } else { Copy-Item 'resources\ASF.ico' -Destination "ArchiSteamFarm\out\$RUNTIME\ArchiSteamFarm.ico" }