From 40691a644c2a5d6c0321c2d473200c6dd27ae99a Mon Sep 17 00:00:00 2001 From: VictoriousRaptor <10308169+VictoriousRaptor@users.noreply.github.com> Date: Fri, 3 May 2024 19:47:16 +0800 Subject: [PATCH] Add icon for installer --- Scripts/post_build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/post_build.ps1 b/Scripts/post_build.ps1 index a03eb8eea..761ad7d7d 100644 --- a/Scripts/post_build.ps1 +++ b/Scripts/post_build.ps1 @@ -123,7 +123,7 @@ function Pack-Velopack-Installer($path, $version, $output) # Create UserData folder before Packing New-Item -ItemType Directory -Force -Path "$input\UserData" - vpk pack --packVersion $version --packDir $input --packId FlowLauncher --mainExe Flow.Launcher.exe --channel $channel + vpk pack --packVersion $version --packDir $input --packId FlowLauncher --mainExe Flow.Launcher.exe --channel $channel --outputDir $output --packTitle "Flow Launcher" --icon "$input\Images\app.ico" } function Publish-Self-Contained($p)