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 938dfac commit 4217402Copy full SHA for 4217402
src/bindings/getLlama.ts
@@ -1,6 +1,6 @@
1
import process from "process";
2
import path from "path";
3
-import sea from 'node:sea';
+import sea from "node:sea";
4
import console from "console";
5
import {createRequire} from "module";
6
import {
@@ -915,7 +915,9 @@ function getShouldTestBinaryBeforeLoading({
915
platformInfo: BinaryPlatformInfo,
916
buildMetadata: BuildMetadataFile
917
}) {
918
- if (sea.isSea()) { return false }
+ if (sea.isSea()) {
919
+ return false;
920
+ }
921
if (platform === "linux") {
922
if (isPrebuiltBinary)
923
return true;
0 commit comments