Skip to content

Commit 6e034c0

Browse files
authored
Merge pull request #631 from fendor/fix/architecture-type-error
Replace x32 with ia32 for Architecture matching
2 parents 1a7cfed + 87ec9d6 commit 6e034c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hlsBinaries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ async function getHLSesfromMetadata(context: ExtensionContext, logger: Logger):
761761
const arch: Arch | null = match(process.arch)
762762
.with('arm', (_) => 'A_ARM' as Arch)
763763
.with('arm64', (_) => 'A_ARM64' as Arch)
764-
.with('x32', (_) => 'A_32' as Arch)
764+
.with('ia32', (_) => 'A_32' as Arch)
765765
.with('x64', (_) => 'A_64' as Arch)
766766
.otherwise((_) => null);
767767
if (arch === null) {

0 commit comments

Comments
 (0)