Create UserData folder before Packing

This commit is contained in:
VictoriousRaptor 2024-05-03 18:54:30 +08:00
parent c058c649c2
commit 82584c26bb

View file

@ -119,7 +119,10 @@ function Pack-Velopack-Installer($path, $version, $output)
{
dotnet tool install --global vpk
}
# 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
}