This commit is contained in:
Yudi 2025-05-09 19:51:33 -03:00
parent ff7cd92192
commit e7bd210d03
No known key found for this signature in database
GPG key ID: E4743B2F033961D1

View file

@ -63,7 +63,7 @@ $plistContent = @"
Set-Content -Path (Join-Path $contentsDir "Info.plist") -Value $plistContent
# Copy all built application files into the .app's MacOS directory
Get-ChildItem -Path $publishDir | ForEach-Object {
Get-ChildItem -Path $PublishDir | ForEach-Object {
Move-Item -Path $_.FullName -Destination $macosDir -Force
}