comamnds/spec: remove plain from RunCPUOptions

This commit is contained in:
2024-06-22 15:25:03 +08:00
parent 920bf9b180
commit 33036559c8

View File

@@ -16,7 +16,7 @@ export interface RunCPUOptions {
*/ */
benchmarks?: string[]; benchmarks?: string[];
buildType?: "nobuild" | "rebuild" | "plain", buildType?: "nobuild" | "rebuild",
/** /**
* Default: HTML and text * Default: HTML and text
@@ -77,7 +77,7 @@ export function runcpuOptions(o: RunCPUOptions): string[] {
return ["--nobuild"]; return ["--nobuild"];
case "rebuild": case "rebuild":
return ["--rebuild"]; return ["--rebuild"];
case "plain": default:
return []; return [];
} }
}), }),