diff options
author | 2023-02-28 22:29:53 -0800 | |
---|---|---|
committer | 2023-03-01 14:12:59 -0800 | |
commit | ee6f54180a9b9f9f72ce6e9f754b3bfb83ef7af6 (patch) | |
tree | f3cfc13b7daea8a58fc3d05f65e626b547adbc93 | |
parent | cf8568ccff4ba5f6e54e8e3b552468069b68bc9e (diff) | |
download | bun-ee6f54180a9b9f9f72ce6e9f754b3bfb83ef7af6.tar.gz bun-ee6f54180a9b9f9f72ce6e9f754b3bfb83ef7af6.tar.zst bun-ee6f54180a9b9f9f72ce6e9f754b3bfb83ef7af6.zip |
Update bindings.zig
-rw-r--r-- | src/bun.js/bindings/bindings.zig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bun.js/bindings/bindings.zig b/src/bun.js/bindings/bindings.zig index 5529db27d..75ab64bfb 100644 --- a/src/bun.js/bindings/bindings.zig +++ b/src/bun.js/bindings/bindings.zig @@ -4740,7 +4740,9 @@ pub fn initialize() void { \\Environment variables must be prefixed with "BUN_JSC_". This code runs before .env files are loaded, so those won't work here. \\ \\Warning: options change between releases of Bun and WebKit without notice. This is not a stable API, you should not rely on it beyond debugging something, and it may be removed entirely in a future version of Bun. - , .{name[0..len]}); + , + .{name[0..len]}, + ); bun.Global.exit(1); } }.callback, |