Skip to content

Commit 8ac7275

Browse files
committed
Mac fallback to wasi until run test are done.
1 parent f70857b commit 8ac7275

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/validator.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ export function getServerPlatform() : ServerPlatform {
8787
case "linux":
8888
return ServerPlatform.linux;
8989
case "darwin":
90-
return ServerPlatform.macOS;
90+
return ServerPlatform.wasi; // For now, use WASI as I cannot test on MAC.
91+
//return ServerPlatform.macOS;
9192
default:
9293
return ServerPlatform.wasi; // Not supported. Fallback to WASI.
9394
}

0 commit comments

Comments
 (0)