From ea97af312f73f28d2a46b49a0cea570a90810e42 Mon Sep 17 00:00:00 2001 From: VlkrS <47375452+VlkrS@users.noreply.github.com> Date: Mon, 12 Jun 2023 12:14:27 +0200 Subject: feat: Adaptations to support OpenBSD port (#19153) --- ext/node/polyfills/_util/os.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/node/polyfills/_util/os.ts') diff --git a/ext/node/polyfills/_util/os.ts b/ext/node/polyfills/_util/os.ts index a3cb396bd..ff5e2efd5 100644 --- a/ext/node/polyfills/_util/os.ts +++ b/ext/node/polyfills/_util/os.ts @@ -2,7 +2,7 @@ const { ops } = globalThis.__bootstrap.core; -export type OSType = "windows" | "linux" | "darwin" | "freebsd"; +export type OSType = "windows" | "linux" | "darwin" | "freebsd" | "openbsd"; export const osType: OSType = ops.op_node_build_os(); -- cgit v1.2.3