From f951ce6931ff8d395bb82657d1a7d25e233259d5 Mon Sep 17 00:00:00 2001 From: Owen Rudge Date: Mon, 6 Feb 2023 11:14:07 +0000 Subject: [PATCH] Fix: Ensure logo for Windows Store common assets package is named correctly --- os/windows/winstore/generate-assets.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/windows/winstore/generate-assets.ps1 b/os/windows/winstore/generate-assets.ps1 index 89c48e6ecf..bd12caf80a 100644 --- a/os/windows/winstore/generate-assets.ps1 +++ b/os/windows/winstore/generate-assets.ps1 @@ -45,4 +45,4 @@ ResizeImage $logoPath 1240 600 "assets\Wide310x150Logo.png" # Copy the logo for the store for the common package New-Item -Path "." -Name "assets-common" -ItemType "directory" -Force -Copy-Item "assets\StoreLogo.png" -Destination "assets-common\StoreLogo.png" +Copy-Item "assets\StoreLogo.png" -Destination "assets-common\StoreLogoCommon.png"