Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { EngingConfigSchema as EngineConfigSchema } from "@/drivers/engine/confi
import { InspectorConfigSchema } from "@/inspector/config";
import type { ManagerDriverBuilder } from "@/manager/driver";
import type { GetUpgradeWebSocket } from "@/utils";
import { getEnvUniversal } from "@/utils";
import { getEnvUniversal, VERSION } from "@/utils";

export const DriverConfigSchema = z.object({
/** Machine-readable name to identify this driver by. */
Expand Down Expand Up @@ -45,7 +45,7 @@ export const RunnerConfigSchema = z
.string()
.optional()
.default(
() => getEnvUniversal("RIVET_RUN_ENGINE_VERSION") ?? "25.8.2",
() => getEnvUniversal("RIVET_RUN_ENGINE_VERSION") ?? VERSION,
),

/** @experimental */
Expand Down
Loading