Skip to content

Commit

Permalink
fixup! Add support for NetBSD ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Jan 28, 2024
1 parent c9c7aa2 commit 232312a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/operating_systems/freebsd/factory.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import {Kind as HypervisorKind} from '../../hypervisor'
import {OperatingSystem} from '../../operating_system'
import {factory, Factory as BaseFactory} from '../factory'
import FreeBsd from './freebsd'
Expand All @@ -8,4 +9,8 @@ class FreeBsdFactory extends BaseFactory {
override createImpl(version: string): OperatingSystem {
return new FreeBsd(this.architecture, version)
}

override validateHypervisor(kind: HypervisorKind): void {
this.architecture.validateHypervisor(kind)
}
}

0 comments on commit 232312a

Please sign in to comment.