We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f70857b commit 8ac7275Copy full SHA for 8ac7275
src/validator.ts
@@ -87,7 +87,8 @@ export function getServerPlatform() : ServerPlatform {
87
case "linux":
88
return ServerPlatform.linux;
89
case "darwin":
90
- return ServerPlatform.macOS;
+ return ServerPlatform.wasi; // For now, use WASI as I cannot test on MAC.
91
+ //return ServerPlatform.macOS;
92
default:
93
return ServerPlatform.wasi; // Not supported. Fallback to WASI.
94
}
0 commit comments