Skip to content

Commit 57e1392

Browse files
Amitjoiyamarcnause
authored andcommitted
fix(installer): remove missing Icelandic language include from Inno Setup script
1 parent f9b5a17 commit 57e1392

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/actions/windows/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ runs:
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

0 commit comments

Comments
 (0)