File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
macos/Runner/Assets.xcassets/AppIcon.appiconset Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 4040 run : |
4141 choco install innosetup --version=6.4.0 -y
4242 $iscc = "${env:ProgramFiles(x86)}\Inno Setup 6\iscc.exe"
43+ # Remove missing Icelandic language include if present to avoid build failure
44+ $issPath = "build\windows\x64\installer\Release\inno-script.iss"
45+ if (Test-Path $issPath) {
46+ (Get-Content $issPath) | Where-Object { $_ -notmatch 'Icelandic\.isl' } | Set-Content $issPath
47+ }
4348 & "$iscc" /O+ "build\windows\x64\installer\Release\inno-script.iss"
4449
4550 - name : Store Installer
Original file line number Diff line number Diff line change 6565 "version" : 1 ,
6666 "author" : " xcode"
6767 }
68+ ,
69+ "properties" : {
70+ "template-rendering-intent" : " template"
71+ }
6872}
You can’t perform that action at this time.
0 commit comments