From e7bd210d0397b15d4938f52e75ed067c59e55fd5 Mon Sep 17 00:00:00 2001 From: Yudi <12040397+Yudi@users.noreply.github.com> Date: Fri, 9 May 2025 19:51:33 -0300 Subject: [PATCH] Casing --- bundle-macos-app.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle-macos-app.ps1 b/bundle-macos-app.ps1 index 12c4df51..5d97bea1 100644 --- a/bundle-macos-app.ps1 +++ b/bundle-macos-app.ps1 @@ -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 }