mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 19:08:50 +00:00
Make Command.Context a pointer (#10237)
This commit is contained in:
@@ -13,7 +13,7 @@ const open = @import("../open.zig");
|
||||
const Command = bun.CLI.Command;
|
||||
|
||||
pub const ExecCommand = struct {
|
||||
pub fn exec(ctx: *Command.Context) !void {
|
||||
pub fn exec(ctx: Command.Context) !void {
|
||||
const script = ctx.positionals[1];
|
||||
// this is a hack: make dummy bundler so we can use its `.runEnvLoader()` function to populate environment variables probably should split out the functionality
|
||||
var bundle = try bun.Bundler.init(
|
||||
|
||||
Reference in New Issue
Block a user